/* @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: 'Montserrat', sans-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 !important;
}

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

.desktop {
    display: block;
}

.mobile {
    display: none;
}

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

header {
    background-color: var(--light-bg-grey);
    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: 18px 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: 45px;
    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: 10px;
    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: 18px;
    background: var(--white-color);
    border: 2px solid #392e65;
    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-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: 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;
}

.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: 10px;
}

.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: 15px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: #f5f5f5;
    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 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;*/
    position: sticky;
    top: 0;
    z-index: 99;
    background: #ffffff;
}
.header-part2{
     position: sticky;
    top: 0;
    z-index: 99;
}
h3.footer-heading {
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.new-footer-li ul.menu-list {
    display: flex
;
    flex-wrap: wrap;
    padding-bottom: 30px;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer-li ul.menu-list li {
    position: relative;
    padding-right: 20px;
}
.footer-list-five-col li {
    width: fit-content;
    text-align: left;
}
/* .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: 10px;
    border-bottom: 2px solid #fff;
    color: #332468;
    font-weight: 500;
    line-height: 1.2;
    font-size: 14px;
}

.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;
    background: #392E65;
    border-radius:100px;
}

.navigation-ul li>a {
    font-size: 14px;
    line-height: 20px;
    /*font-weight: 600;*/
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.5px;
    padding:0 8px;
}

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

.cart-container h6 {
    font-weight: 600;
    font-size: 14px !important;
    line-height: 21.94px;
    color: #332468;
}

.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: 8px;
}

.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: 18px;
    line-height: 1.3;
    font-weight: 700;
    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: #392E65;
    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: bolder;
    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 dashed var(--dark-text-color);*/
    border-top-width: 3px;
}

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

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

.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

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

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    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: 10px 0;
    border-radius: 16px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center
}

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

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

.book-button {
    background: #392E65;
    color: var(--white-color);
    border-radius:100px;
}

.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;
}

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

.choose-us-div p {
    color: var(--dark-text-color);
    font-weight: 700;
    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: absolute;
    top: 0;
    left: 0;
    background: #000;
    padding: 12px;
}

.calendar p {
    color: #ffffff;
    text-align: center;
}

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

.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;
}

.testimonial-card .testimonial-details #ytv {
    padding: 0px !important;
}
.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: bold;
    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: 10px 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 {
    margin-top: 5px;
    color: #A2A2A2;
    font-weight: 500;
}

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

.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: 404px !important;
}

.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: #392e65;
   
}

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

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

.widget-title {
    color: var(--white-color);
}

.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: 300;
    color: var(--white-color);
}

.newsletter {
    color: var(--white-color);
    font-size: 20px;
    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: 15px;
}

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

.social-follow-t {
    color: var(--white-color);
    font-size: 18px;
}

.social-widget ul {
    list-style: none;
    padding-left: 0;
}

.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: var(--white-color);
}

.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('https://uat-cdn.drlallab.com/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('/front/assets/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('/front/assets/images/contact-us-m.png') !important;
    }
    .phlebotomist-us-mobile-bg {
           background-image: url('/front/assets/images/Phlebotomist Mobile Preview.jpg') !important;
    }
    
   

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

    .partnership-mobile-bg {
        background-image: url('/front/assets/images/Business Partnership.jpg') !important;
    }
    .membership-mobile-bg {
          background-image: url('/front/assets/images/membership-mobile.jpg') !important;
    }
    .our-doctors-mobile-bg {
        background-image: url('/front/assets/images/Meetourdr.jpg') !important;
    }
    .our-training-mobile-bg {
        background-image: url('/front/assets/images/Training.jpg') !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;
    }
#desktopfooter{
     display: none !important;
}
    .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;
    }
}
