/* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */



body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 16px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 75px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 12px;
    padding: 15px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 16px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 260px;
    position: relative;
}

    .testimonial-card .testimonial-details {
        padding: 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px;
        background: #efefef;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 235px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 50px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    /* width: 100%; */
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 600;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 600;
}

.copy-p a {
    text-decoration: underline;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 20px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 45px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 13px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 20px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 16px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 30px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 18px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

a /* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 15px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
            text-transform: uppercase;
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 20px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 85px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 20px;
    padding: 30px 20px;
    min-height: 214px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 280px; */
    position: relative;
    background: #fffbee;
}

    .testimonial-card .testimonial-details {
        padding: 0px 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px 20px;
        background: #fffbee;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e029;
    /* padding: 12px 18px; */
    /* background-color: whitesmoke; */
    margin-bottom: 0px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
    background: whitesmoke;
    padding: 12px 18px;
}

.faq-answer {
    display: none;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
    background-color: #ffffff;
    border: 1px solid #f5f5f5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
    font-size: 15px;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
    font-size: 20px;
}

.address-div span {
    font-size: 15px;
    font-weight: 500;
}

.address-div p {
    font-size: 15px;
    font-weight: 500;
}

.address-div h4 {
    font-size: 20px;
    font-weight: 700;
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 350px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 65px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: linear-gradient(8.1deg, #e50202 5.78%, #0693f2 93.35%);
    color: var(--white-color);
    /* width: 100%; */
    display: inline-block;
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
    font-weight: 600;
    font-size: 22px;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 500;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 22px;
    font-weight: 600;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 500;
}

.copy-p a {
    text-decoration: none;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 0px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 75px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 12px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 15px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
            font-weight: 500;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 55px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 8px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
        text-align: center;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
            margin-right: 12px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

    .know-btn:hover {
        color: #fff;
    }

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.wp-google-stars {
    padding: 8px 0;
    clear: both;
}

    .wp-google-stars i {
        color: #fb8e28;
        font-size: 16px;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 10px 1rem;
    overflow-y: auto;
}

#button {
    display: inline-block;
    background-color: #006eb7;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    transform: rotate(1deg);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #button::after {
        content: "\f077";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
        transform: rotate(230deg);
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .health-list li {
        width: 48%;
        margin-bottom: 10px;
    }

    .health-list {
        padding-left: 20px;
    }

    .text-circle {
        width: 40px;
        height: 40px;
        flex: none;
    }

        .text-circle i {
            font-size: 20px;
            line-height: 40px;
        }

    .header-bottom .navigation-list-container {
        display: none;
    }

    .phone-container a {
        font-size: 14px;
        gap: 10px;
        flex: none;
    }

    .copyright {
        justify-content: center;
    }
}

.mission-vision {
    position: relative;
    padding: 60px 0px;
}

    .mission-vision .mission-card {
        position: relative;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 15px #00000017;
        padding: 20px 30px;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        margin-bottom: 30px;
        border: 2px solid #77b3dc;
        border-radius: 15px;
    }

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-vision .card-icon {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px;
    color: #001b4c;
    height: 100px;
    width: 100px;
    line-height: 89px;
    /* border: 1px solid #d6d6d6; */
    border-radius: 50%;
}

    .mission-vision .card-icon img {
        width: 100px;
        height: auto;
    }

.info {
    text-align: center;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 20px;
    /* min-height: 290px; */
    transition: all .5s linear;
}

    .info:hover {
        transform: translateY(-10px);
    }

.contact-us {
    position: relative;
    padding: 60px 0px;
}

.map-content {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 5px;
}

.google-map {
    padding-bottom: 40%;
    position: relative;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
    }

.book-test {
    position: relative;
    padding: 60px 0px;
}


/*--------------------services--------------------------*/
.service-style-six {
    position: relative;
    padding: 60px 0px;
}

.single-service-style-six {
    margin-bottom: 50px;
    transition: .7s;
}

    .single-service-style-six:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .single-service-style-six .img-box {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #e9e9e9;
        border-radius: 10px;
    }

        .single-service-style-six .img-box > img {
            width: 100%;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0px;
            right: 0px;
            bottom: 0;
            background: #000;
            opacity: 0;
            -webkit-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:hover:before {
            opacity: .45;
        }

    .single-service-style-six .text-box {
        padding: 0 15px;
        margin-top: -40px;
    }

        .single-service-style-six .text-box .inner-box {
            background: #fff;
            box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
            position: relative;
            border-radius: 10px;
        }

            .single-service-style-six .text-box .inner-box:after {
                content: '';
                min-height: inherit;
                font-size: 0;
            }

            .single-service-style-six .text-box .inner-box:before {
                background: #006bb3;
                border-radius: 10px;
            }

            .single-service-style-six .text-box .inner-box .content {
                width: 100%;
                text-align: center;
            }

                .single-service-style-six .text-box .inner-box .content h3,
                .single-service-style-six .text-box .inner-box .content p {
                    margin: 0;
                }

                .single-service-style-six .text-box .inner-box .content h3 {
                    color: #333333;
                    font-size: 15px;
                    margin-bottom: 14px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content p {
                    width: 79%;
                    margin-left: auto;
                    margin-right: auto;
                    line-height: 24px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content a.more {
                    /* width: 50px; */
                    /* height: 50px; */
                    border-radius: 4px;
                    /* background: #EC3819; */
                    color: #ec381a;
                    font-size: 14px;
                    position: relative;
                    /* bottom: -25px; */
                    /* left: 50%; */
                    /* -webkit-transform: translateX(-50%); */
                    -ms-transform: translateX(-50%);
                    /* transform: translateX(-50%); */
                    /* line-height: 50px; */
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                    padding: 6px 15px;
                    border: 1px solid #ec381a;
                    display: inline-block;
                }

                    .single-service-style-six .text-box .inner-box .content a.more i {
                        margin-left: 8px;
                    }

            .single-service-style-six .text-box .inner-box:hover .content h3,
            .single-service-style-six .text-box .inner-box:hover .content p {
                /* color: #fff; */
            }

            .single-service-style-six .text-box .inner-box:hover .content a.more {
                background: #F53E59;
                color: #fff;
            }

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

    .sec-title h3 {
        font-size: 36px;
        color: #333333;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .sec-title.text-center .line {
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title .line {
        display: block;
        width: 100px;
        height: 4px;
        background: #df2000;
        margin-top: 15px;
    }

#subheader {
    text-align: center;
    overflow: hidden;
    padding: 40px 0 40px 0;
}

.spacer-single {
    width: 100%;
    display: block;
    clear: both;
}

#subheader {
    background-image: url('../images/icons/subheader3.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

    #subheader h1 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 23px;
        font-weight: 500;
    }

ul.breadcrumbs {
    display: block;
    margin: 1px 0 0;
    font-size: 1em !important;
    position: relative;
}

ul.breadcrumbs {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-left: 0px;
}

    ul.breadcrumbs li {
        display: inline-block;
    }

        ul.breadcrumbs li a {
            color: #da0f00;
        }

        ul.breadcrumbs li span {
            margin: 0 10px;
            filter: alpha(opacity = 40);
            position: relative;
        }

            ul.breadcrumbs li span:before {
                content: "\f054";
                position: absolute;
                left: 0;
                font-family: 'Font Awesome 5 Free';
                color: #da0f00;
                top: 0px;
                font-weight: 600;
            }

.our-Blogs {
    position: relative;
    padding: 60px 0px;
}

.blog-details {
    position: relative;
    padding: 60px 0px;
}

    .blog-details h4 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .blog-details p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-details ul li {
        font-size: 15px;
    }


/* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */



body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 16px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 75px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 12px;
    padding: 15px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 16px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 260px;
    position: relative;
}

    .testimonial-card .testimonial-details {
        padding: 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px;
        background: #efefef;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 235px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 50px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    /* width: 100%; */
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 600;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 600;
}

.copy-p a {
    text-decoration: underline;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 20px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 45px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 13px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 20px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 16px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 30px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 18px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

a /* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 15px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
            text-transform: uppercase;
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 20px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 85px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 20px;
    padding: 30px 20px;
    min-height: 214px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 280px; */
    position: relative;
    background: #fffbee;
}

    .testimonial-card .testimonial-details {
        padding: 0px 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px 20px;
        background: #fffbee;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e029;
    /* padding: 12px 18px; */
    /* background-color: whitesmoke; */
    margin-bottom: 0px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
    background: whitesmoke;
    padding: 12px 18px;
}

.faq-answer {
    display: none;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
    background-color: #ffffff;
    border: 1px solid #f5f5f5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
    font-size: 15px;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
    font-size: 20px;
}

.address-div span {
    font-size: 15px;
    font-weight: 500;
}

.address-div p {
    font-size: 15px;
    font-weight: 500;
}

.address-div h4 {
    font-size: 20px;
    font-weight: 700;
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 350px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 65px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: linear-gradient(8.1deg, #e50202 5.78%, #0693f2 93.35%);
    color: var(--white-color);
    /* width: 100%; */
    display: inline-block;
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
    font-weight: 600;
    font-size: 22px;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 500;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 22px;
    font-weight: 600;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 500;
}

.copy-p a {
    text-decoration: none;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 0px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 75px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 12px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 15px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
            font-weight: 500;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 55px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 8px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
        text-align: center;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
            margin-right: 12px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

    .know-btn:hover {
        color: #fff;
    }

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.wp-google-stars {
    padding: 8px 0;
    clear: both;
}

    .wp-google-stars i {
        color: #fb8e28;
        font-size: 16px;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 10px 1rem;
    overflow-y: auto;
}

#button {
    display: inline-block;
    background-color: #006eb7;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    transform: rotate(1deg);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #button::after {
        content: "\f077";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
        transform: rotate(230deg);
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .health-list li {
        width: 48%;
        margin-bottom: 10px;
    }

    .health-list {
        padding-left: 20px;
    }

    .text-circle {
        width: 40px;
        height: 40px;
        flex: none;
    }

        .text-circle i {
            font-size: 20px;
            line-height: 40px;
        }

    .header-bottom .navigation-list-container {
        display: none;
    }

    .phone-container a {
        font-size: 14px;
        gap: 10px;
        flex: none;
    }

    .copyright {
        justify-content: center;
    }
}

.mission-vision {
    position: relative;
    padding: 60px 0px;
}

    .mission-vision .mission-card {
        position: relative;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 15px #00000017;
        padding: 20px 30px;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        margin-bottom: 30px;
        border: 2px solid #77b3dc;
        border-radius: 15px;
    }

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-vision .card-icon {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px;
    color: #001b4c;
    height: 100px;
    width: 100px;
    line-height: 89px;
    /* border: 1px solid #d6d6d6; */
    border-radius: 50%;
}

    .mission-vision .card-icon img {
        width: 100px;
        height: auto;
    }

.info {
    text-align: center;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 20px;
    /* min-height: 290px; */
    transition: all .5s linear;
}

    .info:hover {
        transform: translateY(-10px);
    }

.contact-us {
    position: relative;
    padding: 60px 0px;
}

.map-content {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 5px;
}

.google-map {
    padding-bottom: 40%;
    position: relative;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
    }

.book-test {
    position: relative;
    padding: 60px 0px;
}


/*--------------------services--------------------------*/
.service-style-six {
    position: relative;
    padding: 60px 0px;
}

.single-service-style-six {
    margin-bottom: 50px;
    transition: .7s;
}

    .single-service-style-six:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .single-service-style-six .img-box {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #e9e9e9;
        border-radius: 10px;
    }

        .single-service-style-six .img-box > img {
            width: 100%;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0px;
            right: 0px;
            bottom: 0;
            background: #000;
            opacity: 0;
            -webkit-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:hover:before {
            opacity: .45;
        }

    .single-service-style-six .text-box {
        padding: 0 15px;
        margin-top: -40px;
    }

        .single-service-style-six .text-box .inner-box {
            background: #fff;
            box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
            position: relative;
            border-radius: 10px;
        }

            .single-service-style-six .text-box .inner-box:after {
                content: '';
                min-height: inherit;
                font-size: 0;
            }

            .single-service-style-six .text-box .inner-box:before {
                background: #006bb3;
                border-radius: 10px;
            }

            .single-service-style-six .text-box .inner-box .content {
                width: 100%;
                text-align: center;
            }

                .single-service-style-six .text-box .inner-box .content h3,
                .single-service-style-six .text-box .inner-box .content p {
                    margin: 0;
                }

                .single-service-style-six .text-box .inner-box .content h3 {
                    color: #333333;
                    font-size: 15px;
                    margin-bottom: 14px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content p {
                    width: 79%;
                    margin-left: auto;
                    margin-right: auto;
                    line-height: 24px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content a.more {
                    /* width: 50px; */
                    /* height: 50px; */
                    border-radius: 4px;
                    /* background: #EC3819; */
                    color: #ec381a;
                    font-size: 14px;
                    position: relative;
                    /* bottom: -25px; */
                    /* left: 50%; */
                    /* -webkit-transform: translateX(-50%); */
                    -ms-transform: translateX(-50%);
                    /* transform: translateX(-50%); */
                    /* line-height: 50px; */
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                    padding: 6px 15px;
                    border: 1px solid #ec381a;
                    display: inline-block;
                }

                    .single-service-style-six .text-box .inner-box .content a.more i {
                        margin-left: 8px;
                    }

            .single-service-style-six .text-box .inner-box:hover .content h3,
            .single-service-style-six .text-box .inner-box:hover .content p {
                /* color: #fff; */
            }

            .single-service-style-six .text-box .inner-box:hover .content a.more {
                background: #F53E59;
                color: #fff;
            }

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

    .sec-title h3 {
        font-size: 36px;
        color: #333333;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .sec-title.text-center .line {
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title .line {
        display: block;
        width: 100px;
        height: 4px;
        background: #df2000;
        margin-top: 15px;
    }

#subheader {
    text-align: center;
    overflow: hidden;
    padding: 40px 0 40px 0;
}

.spacer-single {
    width: 100%;
    display: block;
    clear: both;
}

#subheader {
    background-image: url('../images/icons/subheader3.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

    #subheader h1 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 23px;
        font-weight: 500;
    }

ul.breadcrumbs {
    display: block;
    margin: 1px 0 0;
    font-size: 1em !important;
    position: relative;
}

ul.breadcrumbs {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-left: 0px;
}

    ul.breadcrumbs li {
        display: inline-block;
    }

        ul.breadcrumbs li a {
            color: #da0f00;
        }

        ul.breadcrumbs li span {
            margin: 0 10px;
            filter: alpha(opacity = 40);
            position: relative;
        }

            ul.breadcrumbs li span:before {
                content: "\f054";
                position: absolute;
                left: 0;
                font-family: 'Font Awesome 5 Free';
                color: #da0f00;
                top: 0px;
                font-weight: 600;
            }

.our-Blogs {
    position: relative;
    padding: 60px 0px;
}

.blog-details {
    position: relative;
    padding: 60px 0px;
}

    .blog-details h4 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .blog-details p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-details ul li {
        font-size: 15px;
    }


.sticky-form-container {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 20px;
    width: 350px;
    margin: 50px auto;
    padding: 20px;
    background-color: #006eb7;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .sticky-form-container h2 {
        color: #ffffff;
        font-size: 22px;
        text-align: center;
        margin-bottom: 0px;
    }

.form-group {
    margin-bottom: 0px;
}

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        margin-top: 5px;
        background: #fff;
    }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #0066cc;
        }

    .form-group label {
        color: #ffffff;
        font-size: 14px;
    }

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
    }

    .checkbox-group label {
        color: #ffffff;
        font-size: 12px;
    }

.submit-btn {
    background-color: #fe0000;
    color: #ffffff;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #F44336;
    }


/* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */



body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 16px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 75px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 12px;
    padding: 15px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 16px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 260px;
    position: relative;
}

    .testimonial-card .testimonial-details {
        padding: 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px;
        background: #efefef;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 235px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 50px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    /* width: 100%; */
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 600;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 600;
}

.copy-p a {
    text-decoration: underline;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 20px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 45px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 13px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 20px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 16px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 30px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 18px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

a /* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 15px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
            text-transform: uppercase;
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 20px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 85px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 20px;
    padding: 30px 20px;
    min-height: 214px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 280px; */
    position: relative;
    background: #fffbee;
}

    .testimonial-card .testimonial-details {
        padding: 0px 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px 20px;
        background: #fffbee;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e029;
    /* padding: 12px 18px; */
    /* background-color: whitesmoke; */
    margin-bottom: 0px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
    background: whitesmoke;
    padding: 12px 18px;
}

.faq-answer {
    display: none;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
    background-color: #ffffff;
    border: 1px solid #f5f5f5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
    font-size: 15px;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
    font-size: 20px;
}

.address-div span {
    font-size: 15px;
    font-weight: 500;
}

.address-div p {
    font-size: 15px;
    font-weight: 500;
}

.address-div h4 {
    font-size: 20px;
    font-weight: 700;
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 350px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 65px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: linear-gradient(8.1deg, #e50202 5.78%, #0693f2 93.35%);
    color: var(--white-color);
    /* width: 100%; */
    display: inline-block;
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
    font-weight: 600;
    font-size: 22px;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 500;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 22px;
    font-weight: 600;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 500;
}

.copy-p a {
    text-decoration: none;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 0px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 75px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 12px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 15px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
            font-weight: 500;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 55px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 8px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
        text-align: center;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
            margin-right: 12px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

    .know-btn:hover {
        color: #fff;
    }

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.wp-google-stars {
    padding: 8px 0;
    clear: both;
}

    .wp-google-stars i {
        color: #fb8e28;
        font-size: 16px;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 10px 1rem;
    overflow-y: auto;
}

#button {
    display: inline-block;
    background-color: #006eb7;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    transform: rotate(1deg);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #button::after {
        content: "\f077";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
        transform: rotate(230deg);
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .health-list li {
        width: 48%;
        margin-bottom: 10px;
    }

    .health-list {
        padding-left: 20px;
    }

    .text-circle {
        width: 40px;
        height: 40px;
        flex: none;
    }

        .text-circle i {
            font-size: 20px;
            line-height: 40px;
        }

    .header-bottom .navigation-list-container {
        display: none;
    }

    .phone-container a {
        font-size: 14px;
        gap: 10px;
        flex: none;
    }

    .copyright {
        justify-content: center;
    }
}

.mission-vision {
    position: relative;
    padding: 60px 0px;
}

    .mission-vision .mission-card {
        position: relative;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 15px #00000017;
        padding: 20px 30px;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        margin-bottom: 30px;
        border: 2px solid #77b3dc;
        border-radius: 15px;
    }

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-vision .card-icon {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px;
    color: #001b4c;
    height: 100px;
    width: 100px;
    line-height: 89px;
    /* border: 1px solid #d6d6d6; */
    border-radius: 50%;
}

    .mission-vision .card-icon img {
        width: 100px;
        height: auto;
    }

.info {
    text-align: center;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 20px;
    /* min-height: 290px; */
    transition: all .5s linear;
}

    .info:hover {
        transform: translateY(-10px);
    }

.contact-us {
    position: relative;
    padding: 60px 0px;
}

.map-content {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 5px;
}

.google-map {
    padding-bottom: 40%;
    position: relative;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
    }

.book-test {
    position: relative;
    padding: 60px 0px;
}


/*--------------------services--------------------------*/
.service-style-six {
    position: relative;
    padding: 60px 0px;
}

.single-service-style-six {
    margin-bottom: 50px;
    transition: .7s;
}

    .single-service-style-six:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .single-service-style-six .img-box {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #e9e9e9;
        border-radius: 10px;
    }

        .single-service-style-six .img-box > img {
            width: 100%;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0px;
            right: 0px;
            bottom: 0;
            background: #000;
            opacity: 0;
            -webkit-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:hover:before {
            opacity: .45;
        }

    .single-service-style-six .text-box {
        padding: 0 15px;
        margin-top: -40px;
    }

        .single-service-style-six .text-box .inner-box {
            background: #fff;
            box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
            position: relative;
            border-radius: 10px;
        }

            .single-service-style-six .text-box .inner-box:after {
                content: '';
                min-height: inherit;
                font-size: 0;
            }

            .single-service-style-six .text-box .inner-box:before {
                background: #006bb3;
                border-radius: 10px;
            }

            .single-service-style-six .text-box .inner-box .content {
                width: 100%;
                text-align: center;
            }

                .single-service-style-six .text-box .inner-box .content h3,
                .single-service-style-six .text-box .inner-box .content p {
                    margin: 0;
                }

                .single-service-style-six .text-box .inner-box .content h3 {
                    color: #333333;
                    font-size: 15px;
                    margin-bottom: 14px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content p {
                    width: 79%;
                    margin-left: auto;
                    margin-right: auto;
                    line-height: 24px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content a.more {
                    /* width: 50px; */
                    /* height: 50px; */
                    border-radius: 4px;
                    /* background: #EC3819; */
                    color: #ec381a;
                    font-size: 14px;
                    position: relative;
                    /* bottom: -25px; */
                    /* left: 50%; */
                    /* -webkit-transform: translateX(-50%); */
                    -ms-transform: translateX(-50%);
                    /* transform: translateX(-50%); */
                    /* line-height: 50px; */
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                    padding: 6px 15px;
                    border: 1px solid #ec381a;
                    display: inline-block;
                }

                    .single-service-style-six .text-box .inner-box .content a.more i {
                        margin-left: 8px;
                    }

            .single-service-style-six .text-box .inner-box:hover .content h3,
            .single-service-style-six .text-box .inner-box:hover .content p {
                /* color: #fff; */
            }

            .single-service-style-six .text-box .inner-box:hover .content a.more {
                background: #F53E59;
                color: #fff;
            }

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

    .sec-title h3 {
        font-size: 36px;
        color: #333333;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .sec-title.text-center .line {
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title .line {
        display: block;
        width: 100px;
        height: 4px;
        background: #df2000;
        margin-top: 15px;
    }

#subheader {
    text-align: center;
    overflow: hidden;
    padding: 40px 0 40px 0;
}

.spacer-single {
    width: 100%;
    display: block;
    clear: both;
}

#subheader {
    background-image: url('../images/icons/subheader3.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

    #subheader h1 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 23px;
        font-weight: 500;
    }

ul.breadcrumbs {
    display: block;
    margin: 1px 0 0;
    font-size: 1em !important;
    position: relative;
}

ul.breadcrumbs {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-left: 0px;
}

    ul.breadcrumbs li {
        display: inline-block;
    }

        ul.breadcrumbs li a {
            color: #da0f00;
        }

        ul.breadcrumbs li span {
            margin: 0 10px;
            filter: alpha(opacity = 40);
            position: relative;
        }

            ul.breadcrumbs li span:before {
                content: "\f054";
                position: absolute;
                left: 0;
                font-family: 'Font Awesome 5 Free';
                color: #da0f00;
                top: 0px;
                font-weight: 600;
            }

.our-Blogs {
    position: relative;
    padding: 60px 0px;
}

.blog-details {
    position: relative;
    padding: 60px 0px;
}

    .blog-details h4 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .blog-details p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-details ul li {
        font-size: 15px;
    }


/* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */



body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 90px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 16px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 16px 20px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 75px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ff906e;
    border-top-width: 3px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 12px;
    padding: 15px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 16px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 260px;
    position: relative;
}

    .testimonial-card .testimonial-details {
        padding: 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 14px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px;
        background: #efefef;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #eb0000;
    height: 50px;
    margin-top: 5px;
    color: #eb0000;
    font-weight: 600;
    background: #fff;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 235px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 50px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    /* width: 100%; */
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 600;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 40px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

.copyright {
    display: flex;
    justify-content: space-between;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 600;
}

.copy-p a {
    text-decoration: underline;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 20px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 45px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 13px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 20px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 16px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #332468;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

    .section-bottom-margin {
        margin-bottom: 55px;
    }

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 30px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 100%;
        border-radius: 18px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
    }

        .suggest-card p {
            font-size: 13px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 12px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        color: #006bb3;
        gap: 10px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    !i;
    !;
    padding: 10px;
    border-radius: 50% !important;
    !i;
    !;
    width: 45px;
    font-size: 25px !important;
    background-color: #ffffff !important;
    height: 45px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
    !i;
    !;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 125px;
    height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

a /* @font-face {
    font-family: 'OLSans-serif';
    src: url('/front/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
body {
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    background-color: #fff;
    font-style: normal;
    transform: none;
    overflow: visible;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* all-colors */
    --white-color: #ffffff;
    --dark-blue-color: #332468;
    --dark-green-color: #7bb873;
    --dark-red-color: #CD191C;
    --dark-grey-color: #A2A2A2;
    --dark-text-color: #080808;
    --dark-color: #444343;
    --light-text-color: #676767;
    --light-grey-color: #f0f1f4;
    --light-bg-grey: #F4F4F4;
    --light-blue-color: rgba(146, 123, 230, 0.1);
    --dark-text-color: #4B494F;
    /* Gradients */
    --linear-blue-gradient: linear-gradient(8.1deg, #332468 5.78%, #6547CE 93.35%);
    --linear-purple-gradient: linear-gradient(225.9deg, #0E3F6C 0%, #235B8E 101.63%);
    --linear-progress-gradient: linear-gradient(90.01deg, #19CD20 0.48%, #FFFFFF 140.17%);
    --linear-light-blue-gradient: linear-gradient(50.5deg, #927BE6 14.83%, #FFFFFF 104.96%);
    /* box shadows */
    --button-shadow: 0px 8px 24px rgba(51, 36, 104, 0.25);
    --bs-gutter-x1: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    /* display: inline-block; */
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input, button {
    border: none;
    outline: none;
    background: none;
}

header {
    background-color: #ffffff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    position: relative;
}

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

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

.rupee-symbol {
    font-family: auto !important;
}

.section-top-margin {
    margin-top: 20px;
}

.section-bottom-margin {
    margin-bottom: 50px;
}

.header-content {
    padding: 4px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header-logo {
    margin-right: 50px;
}

    .header-logo img {
        width: auto;
        height: 81px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

.header-widget-1 {
    padding: 5px;
    /* background: var(--white-color); */
    border-radius: 25%;
}

    .header-widget-1 img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.header-form {
    width: 100%;
    margin: 0px 50px;
    border-radius: 8px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 19%);
}

.header-form-mobile {
    position: relative;
    width: 100%;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 1px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
}

/* Specific styles for mobile container */
#mobile-suggestions-container {
    position: absolute !important; /* Force position absolute */
    width: calc(100% - 20px); /* Account for any padding */
    margin: 2px 10px; /* Add some margin on sides */
    top: calc(100% + 1px); /* Ensure it's right below the input */
    left: 0;
    background: #fff;
    z-index: 99999; /* Extra high z-index for mobile */
}

.suggestions-container div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #080808;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    font-weight: 500;
}

    .suggestions-container div:last-child {
        border-bottom: none;
    }

    .suggestions-container div:hover {
        background-color: #f5f5f5;
    }

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.header-form-mobile {
    position: relative !important;
    width: 100%;
}

.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-left: 15px;
}

.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
}

    .header-widget-group .header-widget:first-child {
        margin-left: 0px;
    }

.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-widget i {
        /* width: 40px; */
        /* height: 40px; */
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #f5f5f500;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        color: #006bb3;
    }

    .header-widget sup {
        position: absolute;
        top: -12px;
        left: 20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        background: var(--primary);
        border: 2px solid var(--white);
        text-shadow: var(--primary-tshadow);
    }

.header-bottom {
    border-bottom: 1px solid #e7e7e5;
    /* max-width: 100vw; */
    position: relative;
    background-color: #f5f5f5;
}

    /* .header-bottom .navigations {
    max-width: 1024px;
    margin: auto;
    width: 100%;
} */

    .header-bottom .navigation-list-container {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .header-bottom .location-div {
        display: flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-bottom .location-div .city-location-btn {
            padding: 2px;
            border-bottom: 2px solid #fff;
            color: #332468;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20.75px;
        }

.border-bottom-active {
    /* border-bottom: 2px solid #D62922 !important; */
    position: relative;
}

    .border-bottom-active:after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 2px;
        /* background-color: #D62922; */
    }

.navigation-ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
}

    .navigation-ul li {
        padding: 2px;
        /* border-bottom: 2px solid #fff; */
        list-style: none;
    }

        .navigation-ul li > a {
            font-size: 14px;
            line-height: 20px;
            font-weight: 600;
            text-decoration: none;
            color: #006bb3;
            /* letter-spacing: 0.5px; */
            text-transform: uppercase;
        }

.cart-container {
    display: flex;
    position: relative;
    align-items: center;
    gap: 3px;
    position: relative;
}

    .cart-container h6 {
        font-weight: 600;
        font-size: 13px;
        line-height: 21.94px;
        color: #006bb3;
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
}

.cart-div {
    background-color: #fafafa;
    border-radius: 6px;
}

.cart-details {
    position: relative;
}

.testName {
    font-weight: 500;
    color: var(--dark-text-color);
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.net-price-span {
    color: #49a461;
    font-size: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.cart-parameter-c {
    background-color: #455a640f;
    border-radius: 5px;
    color: #455a64;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    font-weight: 500;
}

.cart-btn-groups {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.test-details-cart {
    padding: 20px 12px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 12px 6px #063b770f;
    background-color: #fff;
    border-radius: 6px;
}

.header-widget-group .header-widget {
    margin-left: 5px;
}

.header-media-group a img {
    width: auto;
    height: 45px;
}

.header-user img, .header-src img {
    width: 32px;
    height: 32px;
}

.mobile-search-div {
    display: none;
}

.input-txt {
    color: var(--dark-text-color);
    font-size: 12px;
    font-weight: 500;
}


::placeholder {
    color: var(--dark-text-color);
    opacity: 1;
}


.hero-section {
    padding: 25px 0px 25px;
}


.banner-div img {
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.promotion-card {
    width: auto;
    height: 280px;
    background: var(--linear-blue-gradient);
    border-radius: 20px;
}

.swiper-paginate-style {
    width: 150px !important;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 16px;
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--dark-blue-color);
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-blue-color);
    width: 30px;
    border-radius: 20px;
}

.suggest-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 20px 10px;
    min-width: 100%;
    max-width: 100%;
    cursor: pointer;
    height: 85px;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .suggest-card p {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-text-color);
        margin-right: 20px;
        z-index: 1;
        position: relative;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .suggest-card span {
        width: 24px;
        height: 24px;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        z-index: 1;
        position: relative;
        transform: translate(10px, -14px);
        -webkit-transform: translate(10px, -14px);
    }

        .suggest-card span i {
            font-size: 24px;
            line-height: 1;
            color: var(--white-color);
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            background: transparent;
            background-clip: unset;
            -webkit-text-fill-color: unset;
            -webkit-background-clip: unset;
        }

/*.suggest-card::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--linear-blue-gradient);
    border-radius: 0px 24px 0px 10px;;
    transform: rotate(163.8deg);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 0;
}*/

.section-title {
    margin-bottom: 15px;
}

    .section-title h1 {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 26px;
    }

.lab-search-form {
    width: 100%;
    border-radius: 18px;
    background: var(--white-color);
    border: 2px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .lab-search-form input {
        width: 100%;
        height: 45px;
        font-size: 15px;
        padding-left: 15px;
    }

    .lab-search-form i {
        width: 45px;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        text-align: center;
        border-radius: 8px;
        color: var(--text);
        display: inline-block;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

.search-lab-filter .search-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.filter-isotope .isotope-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
}

.container-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    padding: 6px 13px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5.57px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}
/*
.categories-isotope {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.categories-isotope:hover {
    color: #000;
} */


.filter-active {
    background: linear-gradient(81.32deg, #927BE6 26.84%, #FFFFFF 144.74%);
    color: #ffffff;
    font-weight: bolder !important;
}

.infra-li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.filter-li {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-card {
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.discount-badge {
    position: absolute;
    top: 0;
    padding: 10px;
}

.discount-off {
    color: var(--white-color);
    font-weight: bold;
    line-height: 1.2;
}

.divider {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #ffffff;
    border-top-width: 2px;
}

.checkup-details {
    display: flex;
    justify-content: center;
    /* text-align: left; */
    flex-grow: 1;
    /* margin-left: 58px; */
}

.checkup-title {
    font-size: 16px;
    font-weight: bold;
}

.price {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #eb0000;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ffffff;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.checkup-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

    .info-item .parameter-icon {
        padding: 5px;
        border: 2px solid;
        border-radius: 50%;
    }

    .info-item span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
    }

    .info-item p {
        color: var(--dark-text-color);
        font-weight: 600;
    }

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 6px 0;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.details-button {
    background: var(--white-color);
    color: #006bb3;
    border: 2px solid #006bb3;
}

    .details-button:hover {
        background: var(--white-color);
        color: #006bb3;
        border: 2px solid #006bb3;
    }

.book-button {
    background: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    color: var(--white-color);
}

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

.book-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
}

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

.spinner-border {
    display: none;
    vertical-align: middle;
}

    .spinner-border.show {
        display: inline-block;
    }

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
}

    .card-custom img {
        width: 120px;
        height: 100px;
    }

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-title {
    color: var(--dark-text-color);
    font-weight: 600;
    font-size: 20px;
}

.arrow {
    padding-top: 5px;
}

    .arrow span {
        padding: 2px 5px 2px 5px;
        background: var(--linear-blue-gradient);
        border-radius: 5px;
    }

.choose-us-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 14px;
    gap: 20px;
    padding: 30px 20px;
    min-height: 214px;
}

    .choose-us-div span {
        color: #535353;
        padding: 3px 20px;
        border-radius: 6px;
        font-weight: 500;
    }

    .choose-us-div img {
        width: 50px;
    }

    .choose-us-div .text-circle {
        /* margin-top: 11px; */
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        background-image: linear-gradient(to right, #9b0000 0, #eb0000 100%);
        background-repeat: repeat-x;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        transition: .25s;
        box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
    }

        .choose-us-div .text-circle i {
            font-size: 30px;
            line-height: 60px;
        }

    .choose-us-div p {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.view-btn {
    color: var(--dark-blue-color);
    font-size: 15px;
    font-weight: 500;
}

.cretificates {
    padding: 10px;
    /* border: 1px solid #f5f5f5; */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

    .cretificates .certificates-flex-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

.post-img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.post-content {
    margin-left: 10px;
    flex-basis: 50%;
}

    .post-content a {
        text-decoration: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 500;
        outline: none;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 18px;
    }

    .post-content > p {
        font-size: 14px;
        color: #b5aec4;
        font-weight: 400;
        margin-bottom: 0;
    }

.post-top {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

    .post-top .span1 {
        padding: 5px;
        background-color: #000;
        border-radius: 8px;
        color: var(--white-color);
    }

.span2 {
    padding: 5px;
    font-weight: 500;
    color: #000000;
}

.author {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.blog-img {
    position: relative;
}

    .blog-img a {
        text-decoration: none !important;
        transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        outline: none !important;
    }

    .blog-img img {
        width: 100%;
    }

.calendar {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background: #000; */
    /* padding: 12px; */
}

    .calendar p {
        color: #000000;
        text-align: center;
        font-size: 14px;
    }

.blog-name p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.blog-img h3 {
    font-size: 16px;
    color: #323232;
    text-transform: uppercase;
    text-align: center;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.blog-p {
    text-align: left;
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 18px;
}

.input-error {
    border-color: red !important;
}

.error-message {
    color: red !important;
    font-size: 15px;
}

.author-img {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.author-image {
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.blog-date {
    font-size: 15px;
    color: #7d7c7c;
    ;
}

.testimonial-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 280px; */
    position: relative;
    background: #fffbee;
}

    .testimonial-card .testimonial-details {
        padding: 0px 20px;
    }


    .testimonial-card .quote i {
        color: #d3d3d3;
        margin-bottom: 20px;
    }

    .testimonial-card .text {
        font-size: 13px;
        color: var(--dark-text-color);
        margin-bottom: 20px;
    }

    .testimonial-card .user {
        display: flex;
        align-items: center;
        padding: 20px 20px;
        background: #fffbee;
        /* position: absolute; */
        bottom: 0;
        width: 100%;
        /* border-bottom-right-radius: 10px; */
        /* border-bottom-left-radius: 10px; */
    }

        .testimonial-card .user img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .testimonial-card .user .name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-blue-color);
        }

        .testimonial-card .user .location {
            font-size: 16px;
            color: #777;
        }

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e029;
    /* padding: 12px 18px; */
    /* background-color: whitesmoke; */
    margin-bottom: 0px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 600;
    background: whitesmoke;
    padding: 12px 18px;
}

.faq-answer {
    display: none;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
    background-color: #ffffff;
    border: 1px solid #f5f5f5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-item.active .fas {
    transform: rotate(180deg);
}

.see-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .see-all a {
        padding: 3px 8px 3px 8px;
        border: 1px solid var(--dark-blue-color);
        border-radius: 16px;
        color: var(--dark-blue-color);
        font-weight: 500;
    }

.section-title .go-back {
    color: var(--dark-text-color);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: var(--light-blue-color);
    }

.lab-name h3 {
    color: var(--dark-text-color);
    font-weight: 500;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.lab-card .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.details-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-details {
    padding: 20px;
}

.discount-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.disc-span {
    width: 60px;
    padding: 5px 10px 5px 10px;
    margin-left: -20px;
}

.total-test {
    background: var(--light-blue-color);
    text-align: center;
    padding: 5px;
}

.test-parameters {
    padding: 0 20px 20px;
}

    .test-parameters p {
        font-size: 15px;
        font-weight: 500;
    }

.para-heading {
    font-size: 14px;
    font-weight: bold;
}

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

    .require-info .require-img {
        padding: 10px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
    }

.parameter-icon {
    width: 30px;
}

.require-info span {
    border: 1px solid #0b88eb75;
    height: 50px;
    margin-top: 5px;
    color: #25a6e1;
    font-weight: 600;
    background: #f4f4f4eb;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

.require-info p {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.divider2 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px dashed #e1e1e1;
    border-top-width: 2px;
}

.required-samples-card {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.samples-details {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.samples-details {
    padding: 0px 20px 20px;
}

.sample-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .sample-info .sample-img {
        width: 70px;
        height: 70px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

.required-icon {
    width: 30px;
}

.sample-info h5 {
    font-weight: bold;
    font-size: 22px;
}

.faq-parameter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question-parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-text-color);
    font-weight: 600;
}

.faq-answer-parameter {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-text-color);
    font-weight: 500;
}

.faq-question-span {
    color: var(--light-text-color);
    font-weight: 500;
}

.faq-parameter.active .faq-answer-parameter {
    display: block;
}

.faq-question-parameter .fas {
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
}

.faq-parameter.active .fas {
    transform: rotate(180deg);
}

.faq-answer-parameter ul {
    list-style: none;
    padding-left: 0;
}

    .faq-answer-parameter ul li {
        color: var(--dark-text-color);
        font-weight: 500;
        font-size: 15px;
    }

.form-field {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.back-button {
    padding-bottom: 10px;
}

    .back-button button {
        font-size: 14px;
        font-weight: 600;
    }

.progress-bar-container {
    padding: 20px 20px 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 12px;
    background-color: #D8F6D9;
    border-radius: 15px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90.01deg, #19CD20 0.48%, #D8F6D9 116.28%, #D8F6D9 116.3%, #FFFFFF 140.17%);
    border-radius: 15px;
    transition: width 0.4s ease;
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(51, 36, 104, 0.4);
    border-radius: 50%;
    transition: left 0.3s ease;
}

#progressText {
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.back-button button i {
    margin-right: 5px;
}

.form-field .form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 10px;
    background: var(--light-grey-color);
}

    .form-field .form-title .form-heading {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

.form-group {
    padding: 15px 10px 0px 10px;
}

.form-label {
    margin-bottom: 5px !important;
    font-weight: 500;
    font-size: 15px;
}

.form-control:focus {
    border-color: #bdc3c7 !important;
}

.age-input-div {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

    .age-input-div span {
        position: absolute;
        left: 80px;
    }

.age-input {
    border: none !important;
    border-radius: none !important;
}

.form-input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.form-input-radio {
    justify-content: space-evenly !important;
}

.placeholder-input {
    width: 50%;
}

    .placeholder-input::placeholder {
        color: var(--dark-grey-color) !important;
    }

.female-input {
    margin-top: 24px;
}

.form-check-input {
    margin-top: 0 !important;
}

/* .form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
} */

.form-input span {
    color: var(--dark-text-color);
    font-weight: 500;
}

.radio {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .input-radio:checked {
        box-shadow: 0px 0px 0px 2px var(--dark-blue-color);
        background-color: var(--dark-blue-color);
    }

.add-member-button {
    width: 100%;
    background: var(--white-color);
    color: #332468;
    border: 2px solid #332468;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.trash a {
    padding: 3px 8px 3px 8px;
    background: var(--white-color);
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

    .trash a i {
        color: var(--dark-red-color);
    }

.package-name {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 10px;
}

.package-icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15); */
}

.package-btn {
    padding: 15px 10px 0px 10px;
}

.form-next-btn {
    width: 100%;
    background: var(--linear-blue-gradient);
    color: var(--white-color);
    padding: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#map-div {
    height: auto;
    position: relative;
}

#map {
    height: 200px;
    width: 100%;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.map-img {
    width: 100%;
    height: 450px;
}

.location-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: red transparent transparent transparent;
}

.current-location {
    /* position: absolute; */
    width: 100%;
    /* bottom: -25px; */
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .current-location .current-address {
        font-weight: bold;
        font-size: 14px;
        color: var(--dark-text-color);
    }

.change-add-btn {
    padding: 5px 10px;
    font-weight: 500;
    color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    font-size: 14px;
    border-radius: 10px;
}

.current-location-2 {
    position: relative;
    bottom: 0 !important;
}

.time-slot-field {
    padding: 10px 10px 0px 10px;
}

.form-field-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
}

.date-container {
    display: flex;
    padding: 10px;
    gap: 20px;
}

.date-input {
    display: none;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.month {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-text-color);
}

.date {
    font-size: 22px;
    font-weight: 500;
    color: var(--light-text-color);
}

.day {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text-color);
}

.check img {
    width: 20px;
}


.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4);
    border-radius: 10px;
}

.card-date.selected .month,
.card-date.selected .date,
.card-date.selected .day {
    color: #fff;
}

.time-slot-container {
    padding: 0px 10px;
}

.time-nav {
    justify-content: space-between;
}

.nav .nav-item button {
    background-color: transparent;
    color: var(--dark-text-color);
}

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
        font-weight: 600;
    }

        .nav .nav-item button.active::after {
            content: "";
            border-bottom: 4px solid var(--bs-danger);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -1px;
            border-radius: 5px 5px 0 0;
        }

.card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: var(--white-color);
    text-align: center;
    border-width: 3px 0px;
    border-style: solid;
    border-color: #676767;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.selected {
    background: linear-gradient(360deg, #332468 -57.14%, #6547CE 0%);
    color: #fff !important;
    border-color: #7c4dff !important;
    border-width: 3px 0px;
    border-style: solid;
    border-color: rgba(236, 232, 253, 0.4) !important;
    border-radius: 10px;
}

.time h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-text-color);
}

.card-time.selected .time h6 {
    color: #fff;
}

.edit-style {
    float: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: underline;
}

.order-package-summary {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-package {
    padding: 10px;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon-img img {
    width: 25px;
    height: 20px;
}

.added-package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
}

.added-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-img img {
    width: 40px;
}

.member-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

    .member-details span {
        font-size: 13px;
    }

.amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.total {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--light-text-color);
}

.figures {
    font-weight: 500;
    color: var(--light-text-color);
}

.to-pay {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--dark-text-color);
}

.figures-to-pay {
    font-weight: 500;
    color: var(--dark-text-color);
}

.about-section {
    position: relative;
    display: block;
    height: auto;
    background: var(--linear-blue-gradient);
}

.header-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-head {
    color: var(--dark-blue-color);
    font-size: 20px;
}

.address-div span {
    font-size: 15px;
    font-weight: 500;
}

.address-div p {
    font-size: 15px;
    font-weight: 500;
}

.address-div h4 {
    font-size: 20px;
    font-weight: 700;
}

.about-title h1 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    padding: 12% 0 11%;
    text-transform: uppercase;
}

.mission-card {
    padding: 15px;
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: 350px;
}

    .mission-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--light-text-color);
    }

.info img {
    width: 65px;
}

.info h5 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.info p {
    font-size: 14px;
    line-height: 1.625;
    margin-top: 10px;
    font-weight: 400;
}

.contact-btn {
    background: linear-gradient(8.1deg, #e50202 5.78%, #0693f2 93.35%);
    color: var(--white-color);
    /* width: 100%; */
    display: inline-block;
}

.upload-text {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
    font-weight: 500;
}


/* footer section */

footer {
    background: #eee;
    padding-top: 50px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        width: 130px;
    }

.widget-title {
    color: #282730;
    font-weight: 600;
    font-size: 22px;
}

.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

.footer a {
    font-weight: 500;
    color: #282730;
    font-size: 15px;
}

.newsletter {
    color: #282730;
    font-size: 22px;
    font-weight: 600;
}

.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    background: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .news-form input {
        width: 100%;
        height: 50px;
        padding: 0px 20px;
        line-height: 50px;
    }

    .news-form button {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 0px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-transform: uppercase;
        color: var(--white-color);
        background-color: var(--dark-red-color);
    }

.social-media {
    margin-top: 0px;
}

.social-widget {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.social-follow-t {
    color: #282730;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

    .social-widget ul li {
        display: inline-block;
    }

        .social-widget ul li a {
            width: 35px;
            height: 35px;
            font-size: 14px;
            line-height: 35px;
            border: 1px solid;
            border-radius: 50%;
            text-align: center;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
            display: inline-block;
        }

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copy-p p {
    font-size: 15px;
    color: #282730;
    font-weight: 500;
}

.copy-p a {
    text-decoration: none;
}

.disc-p {
    font-size: 15px;
    color: var(--white-color);
}

.offcanvas-logo {
    margin-top: 0px;
    display: block;
}

    .offcanvas-logo img {
        width: auto;
        height: 75px;
    }

.items-list ul {
    list-style: none;
    border-top: 1px solid #ededed;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-left: 0;
}

    .items-list ul li {
        border-bottom: 1px solid #dedfe0;
        padding: 12px 8px;
        position: relative;
    }

        .items-list ul li a {
            font-size: 15px;
            color: #000;
            pointer-events: fill;
            text-transform: uppercase;
            font-weight: 500;
        }

.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: var(--dark-blue-color);
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--dark-blue-color);
    border-radius: 6px;
}

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue-color);
    }

.membership-container {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
    border: 1px solid #c19c58;
    background: rgba(174, 175, 176, 0.2);
    border-radius: 15px;
    position: relative;
    padding: 18px 13px 12px;
    margin-top: 40px;
}

.membership-special {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(93.68deg, #d79b49 29.67%, #e2be78 89.33%);
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    top: -11px;
}

.m-price {
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-blue-color);
}

.tests-dis {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.t-tests {
    font-size: 20px;
    font-weight: 600;
}

.discount-class {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue-color);
}

/* footer section end */


.order-details-report {
    position: relative;
}

.order-details-report-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 235, 244);
    box-shadow: rgba(33, 33, 33, 0.06) 0px 1px 1px, rgba(33, 33, 33, 0.04) 0px 2px 3px, rgba(33, 33, 33, 0.08) 0px 0px 3px;
    border-radius: 8px;
    height: auto;
    margin-bottom: 2px;
    padding-bottom: 16px;
}

.order-details-report-h3 {
    font-size: 22px;
    margin: 24px 0px 15px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(48, 54, 60);
}

.order-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px 0px;
    background: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
}

.patient-nfo {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
}

.patient-p-details {
    margin-left: 10px;
}

.order-name {
    color: rgb(79, 88, 94);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.generate-date {
    color: rgb(110, 120, 126);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.view-reports {
    width: 38%;
}

.download-btn {
    width: 100%;
    padding: 8px 36px;
    border: 1.5px solid var(--dark-blue-color);
    outline: 0px;
    height: 40px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: var(--dark-blue-color);
    border-radius: 0.3rem;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

    .download-btn:hover {
        color: var(--dark-blue-color);
    }

.border-down {
    padding: 1px;
    gap: 10px;
    height: 1px;
    background: rgb(236 241 247);
    margin: 5px 0px;
}

.test-report-details {
    margin-top: 20px;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
}

.patient-test-details {
    padding: 5px 0px;
}

.patient-test-details-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test-ico {
    display: flex;
    flex: unset;
    flex-direction: column;
    padding-top: 4px;
}

.test-name-info-report {
    display: flex;
    flex-direction: column;
    flex: 5 1 0%;
    margin-left: 10px;
}

.test-name-info {
    white-space: normal;
    color: rgb(79, 88, 94);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 24px;
}

.percet-bar {
    width: 100%;
    height: 6px;
    background: rgb(238, 244, 255);
    border-radius: 6px;
    margin: 10px 0px;
}

.percent-complete {
    background: var(--linear-blue-gradient);
    height: 6px;
    width: 100%;
    border-radius: 6px;
}

.generate-text-info {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex: 1 1 0%;
}

.ful-generate-text-info {
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
    padding: 0 25px;
}

.h-per {
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1rem;
    color: rgb(110, 120, 126);
}

.values-content {
    width: 100%;
    position: relative;
}

.v-content {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.value-div img {
    display: block;
    width: 100%;
}

.v-bottom {
    width: 100%;
    background-color: var(--dark-red-color);
    padding: 30px 0;
    position: relative;
}

.v-name {
    background-color: var(--dark-blue-color);
    right: 0;
    position: absolute;
    top: -35px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 700;
    /* border-bottom: 6px solid red; */
}

.network-content {
    position: relative;
    width: 100%;
}

.n-content {
    font-size: 15px;
    color: #171717;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin: 20px 0;
}

    .n-content img {
        transition: .3s ease-in-out;
        width: 100px !important;
        padding-right: 20px;
    }

.n-content-text p {
    font-size: 35px;
    color: var(--dark-blue-color);
    font-weight: bold;
    padding-bottom: 5px;
}

.n-content-text span {
    font-size: 15px;
    color: #171717;
}

.team-content-div {
    position: relative;
    width: 100%;
    display: block;
}

.team-details {
    margin-top: 10px;
    text-align: left;
}

    .team-details h3 {
        color: var(--dark-blue-color);
        margin-top: 15px;
        font-weight: bold;
        font-size: 16px;
    }

.certicate-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 21px;
}

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

    .dr-content span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-blue-color);
        margin-left: 14px;
        letter-spacing: 0.04em;
    }

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    background: var(--dark-blue-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.q-header {
    color: #fecc00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* .qualities {
    list-style: none;
    position: relative;
}

.qualities li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 14px;
}

.qualities li span {
    position: absolute;
    left: -24px;
    top: 0;
    max-width: 55px;
}

.svg-icon{
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
} */

.qualities {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 2rem;
}

.svg-icon {
    width: 55px;
    height: 55px;
    fill: #282730;
}

.quality-c {
    padding-left: 30px;
}

.quality-topic {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.quality-c p {
    color: #ffffff;
}

.invetment-details {
    position: relative;
    display: block;
}

.franchise-title {
    margin-top: 20px;
}

    .franchise-title h1 {
        font-family: Montserrat;
        font-weight: 900;
        line-height: 52px;
        color: #332468;
    }

    .franchise-title p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 21.77px;
        line-height: 35px;
    }

.investment-cost-details {
    position: relative;
    display: block;
}

.cost-card {
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F1F4;
    box-shadow: 0px 1.33px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

    .cost-card h3 {
        font-weight: 800;
        font-size: 28px;
        line-height: 34.13px;
        color: #332468;
        margin-bottom: 5px;
    }

    .cost-card p {
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 21.94px;
        color: #2B2B2B;
    }

.extra-info-section {
    background-color: #3F14DB;
}

.info-details-extra {
    padding: 20px;
}

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 24px;
        line-height: 29.26px;
    }

.provide-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-flex-align: start;
    border-bottom: 20px solid #DBE1F4;
}

    .provide-card h5 {
        font-weight: 800;
        font-size: 40px;
        line-height: 48.76px;
        color: #DBE1F4;
    }

    .provide-card .card-topic {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #332468;
    }

.provide-card-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 26.85px;
    margin-top: 10px;
    color: #2B2B2B;
}

.resposibility-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.07834px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.r-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .r-card p {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        color: #332468;
    }

.resposibility-card .r-details {
    font-weight: 500;
    font-size: 20.77px;
    line-height: 26.85px;
    color: #2B2B2B;
    margin-top: 20px;
}

.choose-list .list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
}

.list p {
    font-weight: 600;
}

.bg-img {
    padding: 20px;
}


.choose-div-new {
    position: relative;
}

.choose-img-c {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    width: 100%;
    position: absolute;
    top: 206px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .choose-img-c h5 {
        font-weight: 900;
        font-size: 20px;
        line-height: 32px;
        color: #006bb3;
    }

    .choose-img-c p {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #2B2B2B;
        text-align: center;
        margin-top: 5px;
    }

.contact-details-btn {
    position: relative;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .contact-details-btn .email-btn {
        background: #FFFFFF;
        border: 1px solid #CD191C;
        border-radius: 20px;
        padding: 10px;
        color: #CD191C;
        font-size: 14px;
        font-weight: 600;
    }

.phone-btn {
    background: #CD191C;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.toast {
    min-width: 250px;
}

.toast-body {
    font-size: 0.95rem;
}

#toastIcon {
    font-weight: bold;
}




@media (max-width: 767px) {

    .social-widget ul li a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socio-icons {
        font-size: 1.222em !important;
    }

    .franchise-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .franchise-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .info-details-extra h5 {
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        font-size: 16px;
        line-height: 22.26px;
    }

    .provide-card h5 {
        font-size: 28px;
        line-height: 34.13px;
    }

    .provide-card .card-topic {
        font-size: 16px;
        line-height: 22px;
    }

    .provide-card-details {
        font-size: 16px;
        line-height: 20px;
    }

    .list p {
        font-size: 14px;
        line-height: 16px;
    }

    .bg-img {
        display: none;
    }

    .order-details-info {
        flex-direction: column;
    }

    .view-reports {
        width: 100%;
        margin-top: 15px;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .desktop {
        display: none;
    }

    .location-svg {
        width: 15px !important;
        height: 25px !important;
    }

    .header-bottom .location-div .city-location-btn {
        font-size: 16.75px;
    }

    .navigation-ul {
        /* display: none; */
    }

    .mobile {
        display: block;
    }

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

    .section-top-margin {
        margin-top: 55px;
    }

    .header-form {
        display: none;
    }

    .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
    }

        .header-media-group a img {
            width: auto;
            height: 55px;
        }

    .header-widget img {
        display: none;
    }

    .header-logo {
        display: none;
    }

    .header-widget-1 img {
        display: block !important;
    }

    .header-user img, .header-src img {
        width: 28px;
        height: 28px;
    }

    .header-widget-1 img {
        width: 24px;
        height: 24px;
    }

    .mobile-search-div {
        display: block !important;
        padding-bottom: 10px;
    }

    .header-form-mobile {
        width: 80%;
        border-radius: 8px;
        background: var(--white-color);
        border: 2px solid #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .header-form-mobile button i {
            width: 45px;
            height: 45px;
            font-size: 15px;
            line-height: 45px;
            text-align: center;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

    .mobile-input {
        margin-left: 10px;
        width: 100%;
    }

    .promotion-card {
        width: auto;
        height: 170px;
        background: var(--linear-blue-gradient);
        border-radius: 20px;
    }

    footer {
        padding-top: 20px;
    }

    .copy-p p {
        font-size: 14px;
        text-align: center;
    }

    .disc-p {
        font-size: 13px;
        line-height: 18px;
    }

    .suggest-card {
        min-width: 100% !important;
        padding: 13px 3px !important;
        !i;
        !;
    }

        .suggest-card p {
            font-size: 13px;
            margin-right: 12px;
        }

        .suggest-card span i {
            font-size: 18px;
            margin-right: auto;
            margin-left: auto;
            display: table;
        }

        .suggest-card span {
            width: 30px;
            height: 16px;
        }

        .suggest-card::after {
            width: 62px;
            height: 62px;
        }

    .section-title h1 {
        font-size: 18px;
    }

    .checkup-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4;
    }

    .old-price {
        font-size: 15px;
    }

    .new-price {
        font-size: 16px;
    }

    .info-item .parameter-icon {
        width: 40px;
    }

    .info-item p {
        font-size: 15px;
    }

    .card-custom img {
        width: 90px;
    }

    .card-title {
        font-size: 18px;
    }

    .recom-col {
        padding-left: calc(var(--bs-gutter-x1)* .5) !important;
        padding-right: calc(var(--bs-gutter-x1)* .5) !important;
    }

    .cretificates .certificates-flex-div img {
        width: 30%;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-top {
        gap: 2px;
    }

    .post-img {
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        width: calc(30% - 20px);
        height: 130px;
    }

    .post-content h6 {
        font-size: 16px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .require-info .parameter-icon {
        width: 30px;
    }

    .require-info span {
        font-size: 16px;
    }

    .require-info p {
        font-size: 15px;
    }

    .samples-details {
        display: flex;
        align-items: center;
    }

    .sample-info .sample-img {
        width: 50px;
        height: 50px;
        border: 2px solid #f3f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    }

    .required-icon {
        width: 20px;
    }

    .map-img {
        width: 100%;
        height: auto;
    }

    .time h6 {
        font-size: 12px;
        font-weight: bold;
        color: var(--dark-text-color);
    }

    .package-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    }

    .member-details {
        line-height: 1em;
    }

    .header-hero-section {
        min-height: 300px;
    }

    .about-title h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        line-height: 55px;
        padding: 15% 0 11%;
        text-transform: uppercase;
    }

    .mission-card p {
        font-size: 14px;
    }

    .google-map {
        padding-bottom: 90%;
        position: relative;
    }

    .upload-text {
        font-size: 12px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .order-details-p {
        font-size: 18px !important;
    }

    .confirmation-container {
        margin-top: 30px;
        padding: 20px 50px;
    }

    .green-icon {
        width: 57px;
        height: 57px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1009;
    }

    .confirm-text h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
    }

    .confirm-text p {
        color: #2f3032;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .n-content img {
        width: 75px !important;
        padding-right: 10px;
    }

    .n-content-text p {
        font-size: 20px !important;
    }

    .n-content-text span {
        display: flex;
        font-size: 13px;
        line-height: 15px;
    }

    .qualities {
        flex-direction: column;
    }

    .quality-c {
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .qualities {
        padding-left: 1rem;
    }

    .pr-0 {
        padding-left: 0;
    }

    .filter-isotope {
        display: none;
    }
}

@media (max-width: 360px) {
    .post-top {
        gap: 2px;
    }

    .post-content h6 {
        font-size: 15px;
        color: var(--dark-text-color);
        font-weight: 600;
    }

    .author-name {
        font-size: 14px;
    }

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {

    .header-logo img {
        height: 30px;
    }

    .section-top-margin {
        margin-top: 0px;
    }

    .single-populer-post {
        border-bottom: 1px solid #e6e3e3;
    }

    .post-content h6 {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkup-title {
        font-size: 16px;
    }

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

    .sample-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .require-info span {
        margin-top: 5px;
        color: #A2A2A2;
        font-weight: 500;
        font-size: 12px;
    }

    .require-info p {
        color: var(--dark-text-color);
        font-weight: 600;
        font-size: 14px;
    }

    .navigation-ul {
        display: none;
    }
}

/* new header */
.header-2 {
    background: #f5f5f5;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
}

.naving-items {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 60px;
}

.logo {
    width: auto;
    height: 40px;
}

.nav-list-items {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.list-items {
    flex: 0 0 auto;
    width: 50%;
}

    .list-items ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

        .list-items ul li a {
            display: block;
            padding: .5rem 1rem;
            text-decoration: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
            font-size: 13px;
            color: #010101;
            text-shadow: 0 1px 0 hsla(0, 0%, 100%, .25);
            cursor: pointer;
        }

.search-bar-div {
    flex: 0 0 auto;
    width: 50%;
}

    .search-bar-div ul {
        display: flex;
        flex-direction: row;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        justify-content: space-between;
    }

.search-nav {
    flex: 0 0 auto;
    width: 50%;
}

.search-content {
    width: 100%;
}

.search-container {
    height: 40px !important;
    position: relative;
    overflow: visible;
}

.search-bar {
    width: 100%;
    outline-offset: 0 !important;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url('../../../images/search.png') !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    /* border: none; */
    border-bottom: 2px solid #448ac0 !important;
    border-radius: 4px;
}

.input-container input {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    width: 300px;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
}

.ham-icon {
    display: none;
}

.widgets-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 100px;
}

.header-widgets-1 {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
}

.widgets-img {
    padding: 10px;
    background: #ffffff;
    border-radius: 25%;
    margin-left: 14px;
}

.widget-img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
}

.mobile-widgets {
    display: none;
}

.main-footer {
    background: #0e3f6c !important;
    padding: 60px 0;
}

.footer-parts {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.logo-part {
    width: 360px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo-footer img {
    width: 129px;
    height: 40px;
}

.footer-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.link-part {
    width: 12%;
}

.footer-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding-bottom: 8px;
}

.footer-links-2 {
    list-style: none;
    padding-left: 0;
}

    /* .footer-links li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #f5f5f5;
} */

    .footer-links-2 li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: #f5f5f5;
    }

.social-part {
    width: 23%;
}

.social-icons-part {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

    .social-icons-part a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-size: 2rem;
        position: relative;
        color: #fff !important;
        cursor: pointer;
    }

        .social-icons-part a:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 1px;
            /* background: linear-gradient(270deg, #074279, #235b8e); */
            /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

.contact-part {
    width: 25%;
}

.footer-c-parts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-c-a {
    display: flex;
    padding: 0.7rem;
    border-radius: 50%;
    color: #fff;
    margin-right: 13px;
    position: relative;
}

    .footer-c-a:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 1px;
        /* background: linear-gradient(270deg, #074279, #235b8e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.connect-c {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-part-down {
    border-top: .5px solid #9d9fa1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #e1ebed;
}

.footer-b-links {
    text-decoration: underline !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.footer-disclaimer {
    border-top: .5px solid #9d9fa1;
}

.recommend-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px 10px;
    width: 100%;
    position: relative;
}

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

.recom-img img {
    width: 120px;
    height: 100px;
}

.card-title-r {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue-color);
}

.customer-phone-details {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}


.phone-details p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: #4D4D4D;
}

.phone-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
    color: #080808;
}

.profile-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-title {
    font-weight: 600;
}

.edit-profile-btn {
    position: relative;
    padding: 5px;
    border: 1px solid #332468;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.customer-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .customer-details h5 {
        font-weight: 600;
        font-size: 19px;
        line-height: 23.16px;
    }

    .customer-details p {
        color: #4D4D4D;
        font-size: 14px;
        font-weight: 500;
    }

.address-details h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 23.16px;
}

.membership-content {
    background-color: #977DF6;
}

.content-m {
    background-image: url('../images/membership-bg.png') !important;
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6743E7;
    border-radius: 13.6px;
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}

    .membership-header .main {
        font-weight: 800;
        font-size: 48px;
        color: #FFFFFF;
        opacity: 80%;
    }

    .membership-header h3 {
        font-size: 100px;
        color: #ffffff;
    }

    .membership-header .m-h {
        font-weight: 800;
        font-size: 30px;
        opacity: 80%;
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.benefit-plan-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    line-height: 34.13px;
    text-align: center;
}

.benefit-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    margin-top: 10px;
    padding: 30px 20px;
    border: 1px solid #EAEAEA;
}

.benefits h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 17.50px;
}

.benefits.side-border {
    position: relative;
}

    .benefits.side-border::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px; /* Adjust as needed to position the line */
        height: 100%;
        width: 2px; /* Thickness of the line */
        background-color: rgba(255, 255, 255, 0.3); /* Color of the line */
    }

.membership-bottom-border {
    background-color: #ffffff;
    margin: 1rem 0;
}

.yearly-plan-section {
    background: #6743E7;
    border-radius: 16px;
    padding: 20px 0px;
}

.strong-r {
    font-size: 32px;
    color: #ffffff;
}

.strong-r-span {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.divider-m {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .divider-m::before,
    .divider-m::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #fff; /* Line color */
        margin: 0 15px; /* Space between the icon and the lines */
    }

.buy-c {
    color: #ffffff;
    font-size: 32px;
}

.order-details {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.order-test-name {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-details-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
}

.booking-details-area h5 {
    font-weight: 600;
    font-size: 19px;
    color: #080808;
}

.booking-reports-btns {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
}

    .booking-reports-btns a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #080808;
        font-weight: 600;
        font-size: 18px;
    }

.blog-section {
    background: #977DF6;
    padding-block: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-header-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.all-blogs {
    position: relative;
    display: block;
}

.new-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080808 !important;
}

.blog-para {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}

.read-m-btn {
    font-size: 14px;
    font-weight: 700;
    color: #35256D;
}

.blog-hr {
    background: #3F2D81;
}

.blog-date {
    font-size: 14px;
}

.blog-content-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.search-container-2 {
    position: relative;
    width: 100%;
    max-width: 500px;
}


@media only screen and (max-width: 480px) {

    .blog-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
    }

    .order-test-name {
        font-size: 15px;
    }

    .booking-details-area h5 {
        font-size: 14px;
    }

    .booking-details-area p {
        font-size: 13px;
    }

    .booking-reports-btns a {
        font-size: 16px;
        line-height: 18px;
    }

    .membership-header {
        padding: 20px 0px;
    }

        .membership-header .main {
            font-size: 20px;
        }

        .membership-header .m-h {
            font-size: 14px;
            margin-top: 15px;
        }

        .membership-header h3 {
            font-size: 48px;
            color: #ffffff;
        }

    .benefit-plan-section .title {
        font-weight: 700;
        font-size: 18px;
        color: #ffffff;
        line-height: 34.13px;
    }

    .benefits.side-border::after {
        display: none;
    }

    .strong-r {
        font-size: 25px;
    }

    .buy-c {
        font-size: 20px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .header-widget-group {
        gap: 0px !important;
    }

    .cart-container h6 {
        display: none;
    }

    .cart-container .envelope {
        display: none;
    }

    .header-widget-group .header-widget:first-child {
        margin-left: 20px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .customer-phone-details {
        gap: 50px;
        justify-content: space-between;
    }

    .search-bar-div ul {
        display: block;
        width: 100%;
    }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .recom-img img {
        width: 90px;
        height: 75px;
    }

    .card-title-r {
        font-weight: 600;
        font-size: 15px;
    }

    .main-footer {
        padding: 35px 16px 30%;
    }

    .footer-parts {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .logo-part {
        width: 100%;
    }

    .footer-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        padding-bottom: 16px;
    }

    .link-part {
        width: 100%;
    }

    .footer-head {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        padding-bottom: 10px;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        /* .footer-links li {
        font-weight: 400;
        font-size: 12px;
        line-height: 29px;
    } */

        .footer-links-2 li a {
            font-weight: 400;
            font-size: 12px;
            line-height: 29px;
        }

    .social-part {
        width: 100%;
    }

    .contact-part {
        width: 100%;
    }

    .footer-c-parts {
        align-items: center;
    }

    .footer-bottom-para {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .footer-b-links {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
    }

    .contact-us-mobile-bg {
        background-image: url('../images/contact-us-m.png') !important;
    }

    .about-us-mobile-bg {
        background-image: url('../images/about-us-m.png') !important;
    }

    .partnership-mobile-bg {
        background-image: url('../images/partnership-m.png') !important;
    }

    .our-doctors-mobile-bg {
        background-image: url('../images/pathologists-m.png') !important;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .list-items {
        display: none;
    }

    ul {
        padding-left: 0;
    }

    .logo {
        height: 33px;
    }

    .naving-items {
        flex-wrap: wrap;
        gap: 35px;
    }

    .search-bar-div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .search-bar-div ul {
            display: block;
            width: 100%;
        }

    .input-container input {
        width: 100%;
    }

    .ham-icon {
        display: block !important;
    }

    .widgets-desktop {
        display: none;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        right: 0;
    }

    .search-lab-filter .search-title {
        font-size: 18px;
    }

    .widget-img {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        right: 46px;
    }

    .main-footer {
        padding: 30px 16px;
    }

    .footer-parts {
        column-gap: 20px;
    }

    .logo-part {
        width: 320px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 16px;
    }

    .footer-head {
        font-size: 16px;
        line-height: 20px;
    }

    /* .footer-links li {
        font-size: 13px;
        line-height: 22px;
    } */

    .footer-links-2 li a {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-bottom-para {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-b-links {
        font-size: 12px;
        line-height: 18px;
    }
}

.bars i {
    font-size: 26px;
}

.phone-container {
    display: flex;
}

    .phone-container a {
        display: flex;
        font-size: 13px;
        font-weight: 500;
        color: #006bb3;
        gap: 3px;
    }

.text-circle {
    /* margin-top: 11px; */
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to right, #0b94f1 0, #006bb3 100%);
    background-repeat: repeat-x;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: .25s;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .08);
}

    .text-circle i {
        font-size: 30px;
        line-height: 60px;
    }

.bg-light-b {
    background-color: #eaffff !important;
    border: 1px solid #149595;
    border-left: 3px solid #149595;
}

.bg-light-blue {
    background-color: #EDEAFF !important;
    border: 1px solid #9487e7;
    border-left: 3px solid #9487e7;
}

.bg-light-y {
    background-color: #FFF7E2 !important;
    border: 1px solid #ffd873;
    border-left: 3px solid #ffd873;
}

.bg-light-z {
    background-color: #ffe6df !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-a {
    background-color: #ffe5dd !important;
    border: 1px solid #fc9d82;
    border-left: 3px solid #fc9d82;
}

.bg-light-b {
    background-color: #dfe8fc !important;
    border: 1px solid #2563eb;
    border-left: 3px solid #2563eb;
    /* height: auto; */
}

.b-light-c {
    background-color: #feefd9 !important;
    border: 1px solid #f59200;
    border-left: 3px solid #f59200;
}

.bg-light-d {
    background-color: #d9edf7 !important;
    border: 1px solid #0284c7;
    border-left: 3px solid #0284c7;
}

.bg-light-e {
    background-color: #fad9f3 !important;
    border: 1px solid #e000ad;
    border-left: 3px solid #e000ad;
}

.bg-light-f {
    background-color: #daefe9 !important;
    border: 1px solid #059669;
    border-left: 3px solid #059669;
}

.offer-header {
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.book-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main-banner {
    position: relative;
    padding: 100px 0px;
    background-image: url('../images/main-banner-3.jpg');
    background-size: cover;
    background-position: center, top;
}

.owl-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50% !important;
    width: 35px;
    font-size: 20px !important;
    background-color: #ffffff !important;
    height: 35px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.owl-next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eb0000 !important;
    padding: 10px;
    border-radius: 50% !important;
    width: 35px;
    font-size: 20px !important;
    background-color: #ffffff !important;
    height: 35px;
    line-height: 28px !important;
    color: #eb0000 !important;
    border: 1px solid #eb0000 !important;
}

.health-condition {
    position: relative;
    padding: 0px 0px 60px;
}

.health-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
}

    .health-list li {
        width: 11%;
        list-style: none;
        margin-right: 1px;
    }

.info-categories {
    width: 100%;
    /* height: 110px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border: 1px solid #e4e4e4;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 16px;
}

    .info-categories .content {
        transition: all 0.5sease;
        color: #5c6265;
        font-size: 15px;
        font-weight: 500;
    }

.icon-box img {
    width: 45px;
    height: auto;
}

.certificates-flex-div img {
    width: 230px;
    height: auto;
}

.card-image {
    min-height: 120px;
    overflow: hidden;
    max-height: 120px;
    text-align: center;
}

.blog-item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #ededed;
    min-height: 320px;
}

.blog-content {
    padding: 10px 15px;
    text-align: center;
}

.know-btn {
    position: relative;
    padding: 6px 15px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

    .know-btn:hover {
        color: #fff;
    }

.blog-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blogs-section {
    position: relative;
    padding: 40px 0px;
    background-color: #f5f5f5;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.address p {
    display: flex;
    align-items: baseline;
}

.footer-widget p {
    color: #282730;
    margin: 0;
}

    .footer-widget p i {
        margin-right: 8px;
    }

.widget p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 9px !important;
}

.border-light {
    border-color: #282730 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.wp-google-stars {
    padding: 8px 0;
    clear: both;
}

    .wp-google-stars i {
        color: #fb8e28;
        font-size: 16px;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 10px 1rem;
    overflow-y: auto;
}

#button {
    display: inline-block;
    background-color: #006eb7;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    transform: rotate(1deg);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #button::after {
        content: "\f077";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
        transform: rotate(230deg);
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .health-list li {
        width: 48%;
        margin-bottom: 10px;
    }

    .health-list {
        padding-left: 20px;
    }

    .text-circle {
        width: 30px;
        height: 30px;
        flex: none;
    }

        .text-circle i {
            font-size: 15px;
            line-height: 30px;
        }

    .header-bottom .navigation-list-container {
        display: none;
    }

    .phone-container a {
        font-size: 13px;
        gap: 10px;
        flex: none;
        font-weight: 600;
    }

    .copyright {
        justify-content: center;
    }

    .about-style-one.about-page .about-style-one-content {
        margin-left: 0px !important;
    }

    .about-style-one .about-style-one-content h3 {
        font-size: 25px !important;
        margin-top: 10px;
    }

    .sec-title h3 {
        font-size: 26px !important;
    }

    .single-service-style-six .text-box .inner-box .content h3 {
        font-size: 12px !important;
    }

    .single-service-style-six {
        margin-bottom: 25px !important;
    }

    .blog-item {
        min-height: 270px;
    }

    .mission-vision {
        padding: 0px 0px !important;
    }

    .mission-card {
        height: 370px !important;
    }

    .mission-vision .mission-card {
        padding: 10px 10px !important;
    }

    .footer-logo img {
        width: 98px;
    }
}

.mission-vision {
    position: relative;
    padding: 20px 0px;
}

    .mission-vision .mission-card {
        position: relative;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 15px #00000017;
        padding: 10px 25px;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        margin-bottom: 30px;
        border: 2px solid #77b3dc;
        border-radius: 15px;
        height: 375px;
    }

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-vision .card-icon {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 0px;
    color: #001b4c;
    height: 100px;
    width: 100px;
    line-height: 80px;
    /* border: 1px solid #d6d6d6; */
    border-radius: 50%;
}

    .mission-vision .card-icon img {
        width: 75px;
        height: auto;
    }

.info {
    text-align: center;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 14px;
    height: 311px;
    transition: all .5s linear;
}

    .info:hover {
        transform: translateY(-10px);
    }

.contact-us {
    position: relative;
    padding: 60px 0px;
}

.map-content {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 5px;
}

.google-map {
    padding-bottom: 40%;
    position: relative;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
    }

.book-test {
    position: relative;
    padding: 60px 0px;
}


/*--------------------services--------------------------*/
.service-style-six {
    position: relative;
    padding: 60px 0px;
}

.single-service-style-six {
    margin-bottom: 50px;
    transition: .7s;
}

    .single-service-style-six:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .single-service-style-six .img-box {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #e9e9e9;
        border-radius: 10px;
    }

        .single-service-style-six .img-box > img {
            width: 100%;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0px;
            right: 0px;
            bottom: 0;
            background: #000;
            opacity: 0;
            -webkit-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
            border-radius: 10px;
        }

        .single-service-style-six .img-box:hover:before {
            opacity: .45;
        }

    .single-service-style-six .text-box {
        padding: 0 15px;
        margin-top: -40px;
    }

        .single-service-style-six .text-box .inner-box {
            background: #fff;
            box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
            position: relative;
            border-radius: 10px;
        }

            .single-service-style-six .text-box .inner-box:after {
                content: '';
                min-height: inherit;
                font-size: 0;
            }

            .single-service-style-six .text-box .inner-box:before {
                background: #006bb3;
                border-radius: 10px;
            }

            .single-service-style-six .text-box .inner-box .content {
                width: 100%;
                text-align: center;
            }

                .single-service-style-six .text-box .inner-box .content h3,
                .single-service-style-six .text-box .inner-box .content p {
                    margin: 0;
                }

                .single-service-style-six .text-box .inner-box .content h3 {
                    color: #333333;
                    font-size: 15px;
                    margin-bottom: 14px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content p {
                    width: 79%;
                    margin-left: auto;
                    margin-right: auto;
                    line-height: 24px;
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                }

                .single-service-style-six .text-box .inner-box .content a.more {
                    /* width: 50px; */
                    /* height: 50px; */
                    border-radius: 4px;
                    /* background: #EC3819; */
                    color: #ec381a;
                    font-size: 14px;
                    position: relative;
                    /* bottom: -25px; */
                    /* left: 50%; */
                    /* -webkit-transform: translateX(-50%); */
                    -ms-transform: translateX(-50%);
                    /* transform: translateX(-50%); */
                    /* line-height: 50px; */
                    -webkit-transition: all .4s ease;
                    -o-transition: all .4s ease;
                    transition: all .4s ease;
                    padding: 6px 15px;
                    border: 1px solid #ec381a;
                    display: inline-block;
                }

                    .single-service-style-six .text-box .inner-box .content a.more i {
                        margin-left: 8px;
                    }

            .single-service-style-six .text-box .inner-box:hover .content h3,
            .single-service-style-six .text-box .inner-box:hover .content p {
                /* color: #fff; */
            }

            .single-service-style-six .text-box .inner-box:hover .content a.more {
                background: #F53E59;
                color: #fff;
            }

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

    .sec-title h3 {
        font-size: 30px;
        color: #333333;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .sec-title.text-center .line {
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title .line {
        display: block;
        width: 100px;
        height: 4px;
        background: #df2000;
        margin-top: 15px;
    }

#subheader {
    text-align: center;
    overflow: hidden;
    padding: 40px 0 40px 0;
}

.spacer-single {
    width: 100%;
    display: block;
    clear: both;
}

#subheader {
    background-image: url('../images/icons/subheader3.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

    #subheader h1 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 23px;
        font-weight: 500;
    }

ul.breadcrumbs {
    display: block;
    margin: 1px 0 0;
    font-size: 1em !important;
    position: relative;
}

ul.breadcrumbs {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-left: 0px;
}

    ul.breadcrumbs li {
        display: inline-block;
    }

        ul.breadcrumbs li a {
            color: #da0f00;
        }

        ul.breadcrumbs li span {
            margin: 0 10px;
            filter: alpha(opacity = 40);
            position: relative;
        }

            ul.breadcrumbs li span:before {
                content: "\f054";
                position: absolute;
                left: 0;
                font-family: 'Font Awesome 5 Free';
                color: #da0f00;
                top: 0px;
                font-weight: 600;
            }

.our-Blogs {
    position: relative;
    padding: 60px 0px;
}

.blog-details {
    position: relative;
    padding: 60px 0px;
}

    .blog-details h4 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .blog-details p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-details ul li {
        font-size: 15px;
    }


.sticky-form-container {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 20px;
    width: 350px;
    margin: 50px auto;
    padding: 20px;
    background-color: #006eb7;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .sticky-form-container h2 {
        color: #ffffff;
        font-size: 22px;
        text-align: center;
        margin-bottom: 0px;
    }

.form-group {
    margin-bottom: 0px;
}

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        margin-top: 5px;
        background: #fff;
    }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #0066cc;
        }

    .form-group label {
        color: #ffffff;
        font-size: 14px;
    }

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
    }

    .checkbox-group label {
        color: #ffffff;
        font-size: 12px;
    }

.submit-btn {
    background-color: #fe0000;
    color: #ffffff;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #F44336;
    }


.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .article-header img {
        border-radius: 50%;
        width: 45px;
        height: 45px;
        object-fit: cover;
        margin-right: 10px;
    }

    .article-header .author-details {
        display: flex;
        flex-direction: column;
    }

.author-details .name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.author-details .views {
    font-size: 14px;
    color: #888;
}

.article-meta {
    margin-left: auto;
    text-align: right;
}

    .article-meta .publish-date,
    .article-meta .update-date {
        font-size: 13px;
        color: #888;
    }

/* Banner Image */
.banner {
    margin-top: 20px;
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .banner .banner-text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
    }

.banner-text .main-heading {
    font-size: 32px;
    font-weight: bold;
    color: #f5c301;
}

.banner-text .sub-heading {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.share-buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
}

    .share-buttons a {
        margin-right: 8px;
        text-decoration: none;
        font-size: 20px;
        color: #888;
        transition: color 0.3s;
    }

        .share-buttons a:hover {
            color: #0056b3;
        }

.sec-pad {
    padding: 60px 0 35px;
}

.about-style-one img {
    border-radius: 10px;
}

.about-style-one .about-style-one-content h3 span.color-two {
    color: #ec381a;
}

.about-style-one .about-style-one-content h3 span.color-one {
    color: #006bb3;
}

.about-style-one .about-style-one-content h3 {
    font-size: 32px;
    color: #333333;
    line-height: 1.35em;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-style-one .about-style-one-content h4 {
    color: #333333;
    font-size: 18px;
    margin-top: 26px;
}

.about-style-one .about-style-one-content ul.list-items {
    margin-top: 12px;
    padding-left: 0px;
}

    .about-style-one .about-style-one-content ul.list-items li {
        position: relative;
        padding-left: 25px;
        font-size: 15px;
        list-style: none;
    }

        .about-style-one .about-style-one-content ul.list-items li i {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            font-size: 12px;
            color: #AB1C6E;
        }

.about-style-one.about-page .about-style-one-content {
    margin-left: 0px;
}

.about-style-one-content p {
    font-size: 15px;
}

.img-box {
    position: relative;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.8) 100%);
}

.lab-card {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lab-card .lab-name {
        display: flex;
        align-items: center;
        padding: 15px 10px 15px 10px;
        background: rgb(146 123 230 / 10%);
    }

.checkup-title {
    font-size: 18px;
    font-weight: bold;
}

.lab-card-info {
    padding: 10px;
}

.lab-card .location, .lab-card .tests, .lab-card .reports {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.location p, .tests p, .reports p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text-color);
    line-height: 1.4em;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

.details-button, .book-button {
    flex: 1;
    margin: 5px;
    padding: 4px 0;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.details-button {
    background: #ffffff;
    color: #006bb3;
    border: 2px solid #006bb3;
}

.book-button {
    background: #006bb3;
    color: #fff;
    border-radius: 100px;
}

.funfact-style-two {
    position: relative;
    padding: 70px 0px 70px 0px;
    overflow: hidden;
    background-color: #D9D9D9;
}

    .funfact-style-two:before {
        position: absolute;
        content: '';
        background: linear-gradient(-90deg, #37AA67 0.76%, #08349E 99.64%);
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        mix-blend-mode: multiply;
        z-index: 1;
    }

    .funfact-style-two .bg-layer {
        opacity: 0.5;
    }

.parallax-bg {
    position: absolute;
    left: 0px;
    top: -30%;
    width: 100%;
    height: calc(100% + 30%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.funfact-style-two .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 589px;
    height: 308px;
    background-repeat: no-repeat;
    z-index: 1;
}

.funfact-style-two .pattern-layer .pattern-2 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 642px;
    height: 308px;
    background-repeat: no-repeat;
    z-index: 1;
}

.mobtxt {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.mob-business {
    margin-left: 0 !important;
}

    .mob-business ul.list-items li {
        position: relative;
        padding-left: 25px;
        font-size: 17px !important;
        list-style: none;
        padding: 6px 0px;
    }

.service-section {
    position: relative;
    overflow: hidden;
    background: #F7F7F7;
}

    .service-section .bg-layer {
        opacity: 0.1;
    }

    .service-section .pattern-layer {
        position: absolute;
        left: 0px;
        bottom: -115px;
        width: 466px;
        height: 933px;
        background-repeat: no-repeat;
    }

.service-block-one {
    margin-top: 44px;
}

    .service-block-one .inner-box {
        position: relative;
        display: block;
        box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.15);
        background: #fff;
        padding: 0px 32px 32px 32px;
        border-radius: 10px;
        z-index: 1;
        margin-bottom: 30px;
    }

        .service-block-one .inner-box:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 0%;
            left: 0px;
            bottom: 0px;
            z-index: -1;
            border-radius: 10px;
            transition: all 500ms ease;
        }

        .service-block-one .inner-box:hover:before {
            height: 100%;
            top: 0px;
        }

        .service-block-one .inner-box .icon-box {
            position: relative;
            display: inline-block;
            width: 90px;
            height: 100px;
            margin-top: -45px;
            margin-bottom: 21px;
        }

            .service-block-one .inner-box .icon-box .icon {
                position: relative;
                display: inline-block;
                font-size: 43px;
                color: #fff;
                text-align: center;
                width: 90px;
                height: 100px;
                line-height: 100px;
            }

            .service-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before {
                transition: all 500ms ease;
            }

        .service-block-one .inner-box:hover .icon-box .r-hex:first-child .r-hex-inner:before {
            background: var(--secondary-color) !important;
        }

        .service-block-one .inner-box h3 {
            position: relative;
            display: block;
            font-size: 22px;
            line-height: 36px;
            margin-bottom: 8px;
        }

            .service-block-one .inner-box h3 a {
                display: inline-block;
                color: #000;
                font-size: 22px;
            }

                .service-block-one .inner-box h3 a:hover {
                    text-decoration: underline;
                }

        .service-block-one .inner-box:hover h3 a,
        .service-block-one .inner-box:hover p,
        .service-block-one .inner-box:hover .link a {
            color: #fff;
        }

        .service-block-one .inner-box p {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .service-block-one .inner-box .link a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            line-height: 30px;
            font-family: var(--title-font);
            color: var(--title-color);
            font-weight: 500;
            padding-right: 16px;
        }

            .service-block-one .inner-box .link a:hover {
                text-decoration: underline;
            }

            .service-block-one .inner-box .link a i {
                position: absolute;
                top: 8px;
                right: 0px;
            }


/** service-style-two **/

.service-style-two {
    position: relative;
    overflow: hidden;
}

    .service-style-two .bg-layer:before {
        position: absolute;
        content: '';
        background: #F7F7F7;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        opacity: 0.9;
    }

    .service-style-two .tab-btn-box {
        position: relative;
        display: block;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

        .service-style-two .tab-btn-box .tab-btns {
            position: relative;
        }

            .service-style-two .tab-btn-box .tab-btns li {
                position: relative;
                display: inline-block;
                float: left;
                text-align: center;
                font-size: 20px;
                line-height: 30px;
                font-family: var(--title-font);
                font-weight: 500;
                color: var(--title-color);
                border-radius: 10px;
                overflow: hidden;
                cursor: pointer;
                padding: 18px 30px;
                z-index: 1;
                width: 16.666%;
                transition: all 500ms;
            }

                .service-style-two .tab-btn-box .tab-btns li.active-btn,
                .service-style-two .tab-btn-box .tab-btns li:hover {
                    color: #fff;
                }

                .service-style-two .tab-btn-box .tab-btns li:before {
                    position: absolute;
                    content: '';
                    width: 100%;
                    height: 100%;
                    left: 0px;
                    top: 0px;
                    z-index: -1;
                    transform: scale(0,0);
                    transition: all 500ms;
                }

                .service-style-two .tab-btn-box .tab-btns li.active-btn:before,
                .service-style-two .tab-btn-box .tab-btns li:hover:before {
                    transform: scale(1,1);
                }

.r-hex {
    position: absolute;
    left: -6px;
    top: 0px;
    overflow: hidden;
    display: inline-block;
    width: 100px;
    height: 100px;
    transform: rotate(-30deg) skewX(30deg);
    border-radius: 15px;
}

    .r-hex *, .r-hex *:before {
        display: block;
        overflow: hidden;
        width: inherit;
        height: inherit;
        border-radius: inherit;
    }

.r-hex-inner {
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    cursor: pointer;
    transition: all 500ms ease;
}

.r-hex:first-child .r-hex-inner:before {
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    background: #F5F5F5;
    content: '';
}

.switcher .switch_btn button, button.rtl, button.ltr, .main-header .menu-right-content .btn-box a:hover, .theme-btn, .sub-title:before, .feature-section .inner-container .feature-block-one:first-child .inner-box, .service-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .service-block-one .inner-box:before, .working-block-one .inner-box .count-box .r-hex:first-child .r-hex-inner:before, .events-block-one .inner-box:hover .image-box, .events-block-one .inner-box .lower-content .post-date, .team-block-one .inner-box .image-box .image, .team-block-one .inner-box .image-box .social-links li a:hover, .main-footer .footer-bottom .social-links li a:hover, .image_block_two .image-inner .experience-box h2:before, .service-style-two .tab-btn-box .tab-btns li:before, .speciality-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .working-style-two .working-block:first-child .working-block-two .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .nav-style-one .owl-nav button:hover, .banner-style-three .image-box .support-box .icon-box:before, .feature-block-two .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .feature-block-three .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .journey-block-one .inner-box .year, .journey-block-one .inner-box .decore, .testimonial-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .dots-style-one .owl-dots .owl-dot:before, .news-block-one .inner-box .lower-content .post-date, .news-block-one .inner-box .image-box, .header-style-four .header-lower .logo-box, .chooseus-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .chooseus-block-one .inner-box .bg-layer:before, .image_block_three .image-box .experience-box .r-hex:first-child .r-hex-inner:before, .faq-style-two .inner-box .tab-btn-box .tab-btn:before, .feature-block-four .inner-box .icon-box .r-hex:first-child .r-hex-inner:before, .working-block-three .inner-box .count-box, .working-block-three .inner-box::before, .research-details .content-three .tab-btn-box .tab-btn:before, .service-sidebar .category-widget .category-list li a:hover, .service-sidebar .download-widget .download-list li button span, .service-sidebar .download-widget .download-list li button:hover, .service-sidebar .support-widget .support-box .icon-box:before, .service-sidebar .category-widget .category-list li a.current, .pagination li a:hover, .pagination li a.current, .team-details .content-box .social-links li a:before, .history-section .year, .history-section .border-line:before, .history-section .border-line:after, .sortable-masonry .filter-tabs li:hover, .sortable-masonry .filter-tabs li.active, .blog-sidebar .tags-widget .tags-list li a:hover, .news-block-two .inner-box .image-box, .blog-details-content .upper-image .post-date, .blog-details-content .post-share-option .post-tags li a:hover, .info-block-one .inner-box .r-hex:first-child .r-hex-inner:before {
    background: #006bb3;
}

.service-block-one .inner-box:hover .icon-box .r-hex:first-child .r-hex-inner:before {
    background: #ec381a !important;
}

.service-block-one .inner-box .icon-box .r-hex:first-child .r-hex-inner:before {
    transition: all 500ms ease;
}

.news-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 10px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

    .news-block-one .inner-box .image-box {
        position: relative;
        display: block;
        border-radius: 6px;
        overflow: hidden;
        transition: all 500ms ease;
    }

        .news-block-one .inner-box .image-box img {
            width: 100%;
            border-radius: 6px;
            transition: all 500ms;
        }

    .news-block-one .inner-box .lower-content {
        position: relative;
        padding: 0px 0px 11px 0px;
        text-align: center;
    }

        .news-block-one .inner-box .lower-content .category {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 26px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .news-block-one .inner-box .lower-content h3 {
            position: relative;
            display: block;
            font-size: 22px;
            line-height: 22px;
            margin-bottom: 6px;
        }

            .news-block-one .inner-box .lower-content h3 a {
                display: inline-block;
                color: #000;
            }

.section-title {
    position: relative;
    margin-bottom: 26px;
}

    .section-title h5 {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 10px;
        letter-spacing: 2px;
        font-family: 'Roboto', sans-serif;
    }

    .section-title h2.title {
        font-weight: 700;
        font-size: 33px;
        line-height: 43px;
        margin-bottom: 0;
    }

    .section-title .title-header {
        position: relative;
        margin-bottom: 17px;
    }

    .section-title.title-style-center_text {
        text-align: center;
        margin-bottom: 40px;
    }

.row-title h2.title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 18px;
}

.row-title h5 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: normal;
}

.moblogin {
    position: relative;
    padding: 3px 8px;
    display: inline-block;
    background-color: #006bb3;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-right: 6px;
    margin-left: 5px;
}

.about-style-four {
    position: relative;
    padding: 45px 0px;
}

#content_block_08 .content-box .text {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

    #content_block_08 .content-box .text p {
        margin-bottom: 27px;
        font-size: 14px;
    }

        #content_block_08 .content-box .text p:last-child {
            margin-bottom: 0px;
        }

#content_block_08 .content-box .inner-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

    #content_block_08 .content-box .inner-box .single-item {
        position: relative;
        width: 50%;
        float: left;
        margin-bottom: 31px;
        padding: 4px 0px 8px 68px;
    }

        #content_block_08 .content-box .inner-box .single-item .icon-box {
            position: absolute;
            left: 0px;
            top: 0px;
            font-size: 40px;
            line-height: 40px;
            color: #000;
        }

        #content_block_08 .content-box .inner-box .single-item h5 {
            position: relative;
            font-size: 18px;
            line-height: 28px;
            font-weight: 500;
            margin: 0px;
        }

#content_block_08 .content-box .sec-title {
    margin-bottom: 33px;
}

#content_block_08 .content-box .lower-box .btn-box a {
    position: relative;
    display: inline-block;
    float: left;
}

#content_block_08 .content-box .lower-box .btn-box .video-btn {
    font-size: 15px;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

#content_block_08 .content-box .lower-box .btn-box .more-btn {
    font-size: 15px;
    line-height: 26px;
    font-family: 'Titillium Web', sans-serif;
    color: #2e3192;
    font-weight: 400;
    text-align: center;
    padding: 16px 35px;
}

#content_block_08 .content-box .lower-box .signature-box {
    position: relative;
    margin-left: 45px;
    margin-top: 6px;
}

#content_block_08 .content-box .lower-box .btn-box .video-btn:hover {
    background: #2e3192 !important;
}

#content_block_08 .content-box .lower-box .btn-box .more-btn:hover {
    color: #fff;
}

.about-style-four .image-box {
    position: relative;
    /* display: block; */
    /* padding-right: 175px; */
    /* padding-top: 75px; */
    /* margin-top: 6px; */
}

    .about-style-four .image-box .image img {
        position: relative;
        width: 165%;
        height: 425px;
    }

    .about-style-four .image-box:before {
        /* position: absolute; */
        content: '';
        width: 370px;
        height: 518px;
        top: 29px;
        right: 0px;
    }

    .about-style-four .image-box .pattern-layer {
        position: absolute;
        top: 29px;
        right: 0px;
        width: 370px;
        height: 518px;
        background-repeat: no-repeat;
    }

    .about-style-four .image-box:before {
        /* background: #01aef0; */
    }

@media(max-width:1199px) {
    .navigation-ul li > a {
        font-size: 12px;
    }

    .navigation-ul {
        display: none;
    }

    .header-user, .location-div {
        position: absolute;
        right: 14px;
        bottom: 5px;
        visibility: visible !important;
    }

    .blog-item {
        min-height: 343px;
    }

    .about-style-one.about-page .about-style-one-content {
        margin-left: 0px;
    }

    .about-style-one .about-style-one-content h3 {
        font-size: 25px;
    }

    .info {
        height: 289px;
    }
}

@media (max-width: 991px) {
    .mission-vision .mission-card {
        height: auto !important;
    }

    .info {
        height: 250px;
    }
}

@media(max-width:767px) {

    .cart-container h6 {
        font-size: 13px;
    }

    .header-user, .location-div {
        bottom: 17px;
    }

    .blog-item {
        min-height: auto;
    }

    .info {
        height: auto;
    }
}

@media(max-width:425px) {
    .bgimg {
        display: none;
    }
}

.location-div {
    visibility: hidden;
}

.lower-content p {
    font-size: 14px;
}

.mob_position {
    position: relative;
}

.moblist {
    list-style: none;
    padding-left: 0px;
}

    .moblist li {
        padding: 8px 0px;
    }

    .moblist i {
        color: #eb0000;
        background: #e0d6d6b8;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        padding: 6px;
        line-height: 19px;
    }

.mob_position img {
    padding: 6px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.bgimg {
    background: linear-gradient(179.95deg, rgba(255, 255, 255, 0.4) 0.05%, rgba(165, 143, 247, 0.4) 105.18%), url(../images/about-4.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

.bgimg {
    padding: 8px;
}

.quality-c p {
    color: #ffffff;
    font-size: 14px;
}
