@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #5C2D91;
    --secondary-color: #F7941D;
    --dark-blue: #02254D;
    --black: #000000;
    --dark-gray: #101010;
    --light-gray: #F5F5F5;
    --text-gray: #1E1E1E;
    --white: #FFFFFF;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-gray);
    background: var(var(--white));
    font-size: 16px;
    font-weight: normal;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
body::-webkit-scrollbar-thumb:hover {
    background: #3BA7A6;
}

p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

strong {
    font-weight: 600;
}

ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: all .5s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    text-decoration: none;
}

* {
    outline: none !important;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    left: -50px;
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: background 0.5s;
    z-index: 999;
    transition: 0.5s ease;
}

.back-to-top img{
    transform: rotate(180deg);
    max-width: 20px;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--white);
}

.back-to-top.scrollfixed {
    left: 15px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease;
}

.back-to-top i {
    padding-top:8px;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #CCC;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.orange-bg{
    background: var(--secondary-color);
    padding: 50px 0px;
}

.orange-bg .comm-btn{
    display: inline-block;
}
.orange-bg .comm-btn:hover{
    background: var(--white);
    color: var(--black);
}

.show-mobile, .show-ipad{
    display: none;
}

.section-padding{
    padding: 100px 0px;
}

.section-padding .container{
    z-index: 3;
    position: relative;
}

.section-padding .container .top_head{
    margin:0 auto 40px auto !important;
}


.main-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--black);
    margin-bottom: 20px;
}

.main-title span {
    color: var(--primary-color);
}

.h2-title{
    font-family: "cinemasunday", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    padding: 0px 0px 20px 0px;
    margin: 0px;
}

.h3-title{
    font-size: 24px;
    font-weight: 300;
}

.main-banner{
    position: relative;
    z-index: 10;
    background: #f3f3f3;
}

.main-banner header{
    position: relative;  
    padding: 10px 0px; 
    transition: all 0.6s ease;  
    z-index: 999;
    background: var(--white);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.main-banner header.scrollfixed{
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: all 0.6s ease;
    animation: fadeInDown 2s;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.main-banner header nav ul{
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-banner header nav ul li a{
    color: var(--black);
}

.main-banner header nav ul li a:hover{
    color: var(--secondary-color);
}

.hero_banner_container{
    max-width: 100%;
}

#banner-carousel img{
    width: 100%;
    margin: 0;
}

.hero_banner_form{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc((100vw - 1410px) / 2);
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -200px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

body.padd-top{
    padding-top: 100px;
}

.main-banner header .top-phone{
    text-align: right;
}

.main-banner header a.top-url{
    display: block;
}

.main-banner header .top-phone-btn{    
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.6s ease;
    overflow: hidden;
    position: relative;
    color: var(--black);
}
.main-banner header .top-phone-btn img{
    max-width: 30px;
    z-index: 1;
    position: relative;
}

.main-banner header .top-phone-btn:hover{ 
    color: var(--secondary-color);
}

ul.why-choose-us-icon-box{
    margin: 30px 0px 0px 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

ul.why-choose-us-icon-box li{
    list-style: none;
    text-align: center;
    font-size: 15px;
    color: #6F6F6E;
}

ul.why-choose-us-icon-box li strong{
    display: block;
    font-size: 40px;
    color: var(--secondary-color);
    padding: 20px 0px;
}

ul.home-icon-box{
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
}

ul.home-icon-box li{
    text-align: left;
    width: 16%;
    list-style: none;
    padding: 15px;
    transition: all 0.6s ease;
    font-size: 15px;
    color: var(--text-gray);
    border-radius: 7px;
}

ul.home-icon-box li:hover{
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

ul.home-icon-box li img{
    transition: all 0.6s ease;
    display: block;
}

ul.home-icon-box li:hover img{
    filter: brightness(0) invert(1);
    transition: all 0.6s ease;
}

ul.home-icon-box li strong{
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 15px 0px;
    color: var(--primary-color);
    transition: all 0.6s ease;
}

ul.home-icon-box li:hover strong{
    color: var(--white);
}

ul.home-safety-icon-box{
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

ul.home-safety-icon-box li{
    text-align: left;
    width: 47%;
    min-height: 150px;
    list-style: none;
    padding: 20px;
    transition: all 0.6s ease;
    font-size: 15px;
    color: var(--text-gray);
    border-radius: 7px;
    background: var(--white);
}

ul.home-safety-icon-box li:hover{
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

ul.home-safety-icon-box li img{
    transition: all 0.6s ease;
    display: block;    
    margin-bottom: 20px;
}

ul.home-safety-icon-box li:hover img{
    filter: brightness(0) invert(1);
    transition: all 0.6s ease;
}

.safety-measures-bg{
    position: relative;
}
.safety-measures-bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/safety-measures-bg.png') left top no-repeat #f2f2f2;
    z-index: 0;
}



ul.std-info-icon-box{
    padding: 0px;
    margin: 0px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

ul.std-info-icon-box li{
    text-align: left;
    width: 23%;
    list-style: none;
    padding: 15px;
    transition: all 0.6s ease;
    font-size: 15px;
    color: var(--text-gray);
    border-radius: 7px;
    background: #FEF7F3;
}

ul.std-info-icon-box li:hover{
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

ul.std-info-icon-box li img{
    transition: all 0.6s ease;
    display: block;
}

ul.std-info-icon-box li:hover img{
    filter: brightness(0) invert(1);
    transition: all 0.6s ease;
}

ul.std-info-icon-box li strong{
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 15px 0px;
    color: var(--primary-color);
    transition: all 0.6s ease;
}

ul.std-info-icon-box li:hover strong{
    color: var(--white);
}


.reports-bg{
    background: url('../images/reports-bg.png') center center no-repeat #f3f3f3;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px 0px 20px;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.comm-btn{
    background: var(--primary-color);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    color: var(--white);
    transition: all 0.6s ease;
}

.comm-btn.white_btn{
    background-color:var(--white);
    color: var(--primary-color);
}

.comm-btn:hover{
    color: var(--white);
    background: var(--secondary-color);
}

.comm-btn.white_btn:hover{
    background-color: var(--secondary-color);
}


.reports-bg .reports-image img{
 animation: run 2s linear infinite alternate;
}

@keyframes run {
  0% {
    transform: translateX(0%);
  }
  30% {
    transform: translateX(-20px);
  }
  70% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0%);
  }
}


.gray-bg{
    background: #f6f3f8;
}

.noise_bg{
    background: url('../images/noise-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.packages-bg{
    background: #FEF7F3;
    border-radius: 10px;
    margin: 40px 0px;
    transition: all 0.6s ease;
}

.packages-bg:hover{
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.packages-bg .packages-content{
    padding: 20px;
    position: relative;
}
.packages-bg .packages-content h3{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-right: 50px;
}

.packages-bg .packages-content p{
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 60px;
}

.packages-bg .packages-content p span{
    background: var(--secondary-color);
    width: 2px;
    height: 13px;
    margin: 0px 5px;
    display: inline-block;
}

.packages-bg .packages-content .total-tests{
    position: absolute;
    right: 20px;
    top: -30px;
    padding: 15px;
    background: linear-gradient(180deg, rgba(92, 45, 145, 0.50) 0%, rgba(255, 255, 255, 0.00) 100%);
    color: var(--primary-color);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.packages-bg .packages-content .total-tests strong{
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.packages-bg .packages-content ul{
    margin: 0px;
    padding: 20px 0px 0px 0px;
    border-top: 1px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.packages-bg .packages-content ul li{
    list-style: none;
    padding:0px;
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-gray);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 47%;
}

.packages-bg .package-footer{
    padding: 15px;
    background: var(--primary-color);
    border-radius: 0px 0px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.packages-bg .package-footer .package-footer-price{
    width: 55%;
}
.packages-bg .package-footer .package-footer-price .new-price{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    color: var(--white);
    display: block;
}
.packages-bg .package-footer .package-footer-price .new-price strong{
    font-size: 24px;
    font-weight: 700;
}
.packages-bg .package-footer .package-footer-price .old-price{
    font-size: 20px;
    font-style:italic;
    font-weight: 500;
    line-height: 36px;
    color: var(--secondary-color);
    
}

.packages-bg .package-footer .package-footer-price .old-price strong{
    text-decoration-line: line-through;
    font-size: 24px;
    font-weight: 600;
}

.packages-bg .package-footer a.comm-btn{
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 20px;
}

.packages-bg .package-footer a.comm-btn:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}

.packages-bg .mCSB_scrollTools .mCSB_draggerRail{
    display: none;
}

.mCSB_scrollTools .mCSB_draggerContainer:before{
    position: absolute;
    left: 7px;
    top: 0px;
    width: 2px;
    height: 100%;
    background: #bbbbbb;
    content: "";
}

.home-sample-collection-bg{
    background: url('../images/home-sample-collection-bg.png') center center no-repeat #f3f3f3;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.home-sample-collection-bg .home-sample-collection-content h3{
    font-size: 30px;
    color: var(--black);
    font-weight: 600;
}
.home-sample-collection-bg .home-sample-collection-content h3 span{
    display: block;
    color: var(--primary-color);
}

.home-sample-collection-bg .home-sample-collection-content p{
    color: var(--black);
    margin: 20px 0px 0px 0px;
}

.home-sample-collection-bg .home-sample-collection-content p strong{
    color: var(--primary-color);
}

.home-sample-collection-bg ul.home-sample-collection-icons{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
}

.home-sample-collection-bg ul.home-sample-collection-icons li{
    list-style: none;
    width: 30%;
    font-size: 14px;
    color: var(--text-gray);
}

.home-sample-collection-bg ul.home-sample-collection-icons li strong{
    display: block;
    font-size: 18px;
    padding: 10px 0px;
    color: var(--black);
}

.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
}

.slick-arrow {
	z-index: 1;
	width: 40px;
	height: 40px;
}

.slick-arrow:before {
	font-size: 30px;
}
.slick-next {
	right: calc(50% - 40px);
    background: url('../images/arrow-right.svg') center center no-repeat !important;
}
.slick-prev {
	left: calc(50% - 40px);
    background: url('../images/arrow-left.svg') center center no-repeat !important;
}

.slick-prev:before, .slick-next:before{
    display: none;
}

.slick-prev, .slick-next{
    top: inherit;
    bottom: -60px;
}

.form-bg{
    position: relative;
    border: 1px solid var(--primary-color);
    background: var(--white);
    background-size: contain;
    border-radius: 7px;
    overflow: hidden;
    margin: 50px 0px;
}

.form-bg .form-pad{
    padding: 20px 20px 0px 20px;
}

.form-bg .form-pad form{
    margin-bottom: 10px;
}

.form-bg h3{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-bg p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #6F6F6E;
    margin-bottom: 20px;
}


input[type="text"]{
    width: 100%;
    border: 1px solid var(--secondary-color);
    padding: 15px;
    display: block;
    border-radius: 4px !important;
    color: var(--text-gray);
    font-size: 16px;
    font-style: normal;
    margin-bottom: 20px;
    background: transparent;
    transition: all 0.6s ease;
}

input[type="text"]:hover{
    border-color: var(--primary-color);
}

input::placeholder {
  opacity: 1;
  color: #6F6F6E;
  transition: all 0.6s ease;
}

input:hover::placeholder, input:focus::placeholder {
  opacity: 1;
  color:var(--dark-blue);
  transition: all 0.6s ease;
}

form .form-send-otp{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}

form .form-verify-otp{
    display: none;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c7c7c7;
    margin-bottom: 20px;
}

form .form-verify-otp.active{
    border-color: var(--secondary-color);
}

form .form-send-otp input[type="text"], form .form-verify-otp input[type="text"]{
    margin-bottom: 0px;
    border: none;
}

input[type="submit"]{
    width: auto;
    padding: 15px 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    background: var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    border: none;
    transition: all 0.6s ease;
    color: var(--white);
} 

input[type="submit"]:hover{
    width: auto;
    background: var(--secondary-color);
    color: var(--white);
}

form .form-send-otp input[type="submit"],
form .form-send-otp a,
form .form-verify-otp  a{
    margin-bottom: 0px;
    margin-right: 20px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 0px 0px 10px;
    color: var(--text-gray);
    background: transparent !important;
    white-space: nowrap !important;
}

form .form-verify-otp input[type="submit"]{
    margin-bottom: 0px;
    margin-right: 20px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 0px 0px 15px;
    color: #c7c7c7;
    background: transparent !important;
}

form .form-verify-otp.active input[type="submit"]{
    color: var(--black);
}

form .form-send-otp input[type="submit"]:hover, form .form-verify-otp input[type="submit"]:hover{
    color: var(--secondary-color);
}

.hero_banner_container>.row{
  position: relative;
}
 .slick-dots{
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap:5px;
    left: calc((100vw - 1410px) / -4);
}

 .slick-dots li{
   width: 10px !important;
    height: 10px !important;
}

.slick-dots li button{
    font-size: 14px;
    width: 10px !important;
    height: 10px !important;
    border-radius: 10px;
    padding: 0px;
    pointer-events: none;
    line-height: 16px;
    background: var(--primary-color);
    position: absolute;
    transition: all 0.6 ease;
}

.slick-dots li.slick-active button{
    background: var(--secondary-color);
}



.slick-dots li:last-child.slick-active:before{
    display: none;
}

.slick-dots li button:before{
    display: none !important;
}

.slick-slide{
    position: relative;
    overflow: hidden;
}

.slick-slide img{
    transition: all 0.6s ease;
}

.slick-slide:hover img{
    transform: scale(1.1);
    transform-origin: center;
    transition: all 0.6s ease;
}

.slick-slide span{
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 10px;
    background: var(--dark-blue);
    color: var(--white);
    font-size: 18px;
    text-align: center;
    width: 100%;
    transition: all 0.6s ease;
    opacity: 0.75;
    display: none;
}

.slick-slide:hover span{
    transition: all 0.6s ease;
    opacity: 1;
}

.testimonial-section{
    padding-left: calc((100vw - 1300px) / 2);
}

.google-review-bg{
    background: url('../images/google-review.jpg') center center no-repeat #fff7f4;
}


.testimonials-carousel .testimonials-box{
    padding: 80px 20px 20px 20px;
    background: url('../images/testimonial-quote.svg') left 20px top 20px no-repeat var(--white);
    border-radius: 10px;    
    min-height: 450px;
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
}

.testimonials-carousel .testimonials-box:hover{
    background: url('../images/testimonial-quote.svg') left 20px top 20px no-repeat var(--secondary-color);
    color: var(--white);
}

.testimonials-carousel .testimonials-box p{
    font-size: 16px;
    color: var(--text-gray);
    transition: all 0.6s ease;    
   display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 120px;
}
.testimonials-carousel .testimonials-box p.full_view{
    max-height: 400px;
     -webkit-line-clamp: 40;
}

.testimonials-carousel .testimonials-box:hover p{
    color: var(--white);
    transition: all 0.6s ease;    
}

.testimonials-carousel .testimonials-box .testimonials-box-author{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    transition: all 0.6s ease;
    margin-top: auto;
}
.testimonials-carousel .testimonials-box:hover .testimonials-box-author{
    color: var(--white);
}
.testimonials-carousel .testimonials-box .testimonials-box-author img{
    max-width: 40px;
    border-radius: 50%;
}

.have-a-question-bg{
    background: url('../images/have-a-question-bg.png') center center no-repeat #f3f3f3;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.have-a-question-bg .whatsapp-btn img{
    border: 7px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: shake 0.6s linear infinite alternate;
}


@keyframes shake {
    0% {
		transform: scale(1,1);
	}
    20% {
		transform: scale(1.1,1.1);
	}
	80% {
		transform: scale(1.1,1.1);
	}
	100% {
		transform: scale(1,1);
	}
}

.have-a-question-bg .comm-btn{
    white-space: nowrap;
}

footer{
    background: var(--primary-color);
    padding: 70px 0px 100px 0px;
    font-size: 16px;
    color: var(--white);
}

footer .logo_section{
     display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .social_links{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .social_links p{
    color: white;
    text-align: left;
}

footer .social_links ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0px;
    padding: 0px;
    text-align: left;
}

footer .social_links ul li img,
footer .social_links ul li a{
    transition: 0.3s transform;
    transition-delay: 0 !important;
}

footer .social_links ul li img{
    filter: invert(1) brightness(100) !important;
}
footer .social_links ul li a:hover img{
    filter: unset !important;
    transform: scale(0.95);
}

 footer .logo_section>img{
        width: 200px;
    }

.bottom_bar{
    padding: 28px 0;
    border-top: solid white 1px;
    margin-top: 70px;
}

.bottom_bar ul{
    display: flex;
}

footer ul li{
    list-style: none;
    padding: 0px 10px;
}

footer ul li:first-child{
    border-left: none;
}

footer ul li a{
    text-decoration: none;
    color: var(--white);
    transition: all 0.6s ease;
}

footer ul li a:hover{
    color: var(--secondary-color);
}
footer .location ul{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

footer .location ul li a{
    display: flex;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}


.footer-sticky{
    position: fixed;
    bottom: -200px;
    left: 0px;
    width: 100%;
    padding: 15px 0px;
    background: var(--secondary-color);
    z-index: 9;
    transition: all 0.6s ease;
}


.footer-sticky.active{
    bottom: 0px;
}

.footer-sticky .main-title{
    font-size: 36px;
}

.footer-sticky a.comm-btn{
    background: var(--white);
    color: var(--primary-color);
    white-space: nowrap;
    display: inline-block;
    padding: 10px 20px;
}

.footer-sticky a.comm-btn:hover{
    background:var(--primary-color);
    color: var(--white);
}

.mobile_img{
    display: none;
}

.mobile_menu{
    display: none;
}

.header_right{
    display: flex;
    gap: 10px;
}

.health_package_container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.health_package{
    border-radius: 8px;
    overflow: hidden;
    background-color:#FEF7F3;
    padding: 0;
    width: calc(25% - 22.5px);
    position: relative;
}

.health_package .image img{
    width: 100%;
}

.health_package .content{
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 270px;
}

.health_package .content h4,
.health_package .content p{
    margin: 0;
}

.health_package .content h4{
    color: var(--primary-color);
    font-weight: 600;
}

.health_package .content p{
    font-size: 13px;
    line-height: 19px;
}

.health_package .content ul{
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.health_package .content ul li{
    display: flex;
    gap: 8px;
    align-items: center;
}

.health_package  .footer_content{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
}

.health_package  .footer_content h5{
    color: white;
}

.tests_slider_wrapper{
    padding-left: calc((100vw - 1320px) / 2);
  
}

.tests_slider_wrapper .slick-track{
    padding-bottom: 10px;
}


#test_slider{
  padding-bottom: 50px;
}

#test_slider .slick-list,
#test_slider .slick-track{
    display: flex;
}

#test_slider .test {
    padding: 16px;
    background-color: white;
    transition: 0.3s all;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

#test_slider .test:hover{
    background-color: var(--secondary-color);
}
#test_slider .test:hover *,
#test_slider .test:hover span{
    color: white !important;
}

#test_slider .test:hover a img{
    filter: invert(1) brightness(100);
}

#test_slider .test a{
    margin-top: auto;
    margin-bottom: 20px;
}

#test_slider .test h3{
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

#test_slider .slick-slide.test h3 span{
    font-size: 16px;
    line-height: 24px;
    display: block;
    position: static;
    padding: 0;
    background: unset;
    color: var(--secondary-color);
    font-size: 18px;
    text-align: unset;
    opacity: 1;
    width: unset;
    transition: 0.3s all !important;
}

a.link_btn{
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s all;
}

a.link_btn:hover{
   transform: translateX(5px);
}

a.link_btn img{
    width: 24px;
}

/* #test_slider .slick-track{
    margin-right: -50px;
} */

#test_slider .slick-slide.test a:hover{
    transform: translateX(5px);
}

.sample_collection{
    background: url('../images/sample-collection-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 85px;
    margin-top: 40px;
}

.sample_collection .content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 35%;
    text-align: left;
    gap: 24px;
}
.sample_collection .content h2{
    text-align: left !important;
    font-size: 32px;
    line-height: 40px;
    margin: unset;
}

.sample_collection .content p span{
    color: var(--primary-color);
    font-weight: 600;
}

.sample_collection .cards{
display: flex;
width: 55%;
justify-content: space-between;
}

.sample_collection .cards ._card{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sample_collection .cards ._card img{
    width: 40px;
}
.sample_collection .cards ._card h4{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    font-weight: 600;
}
.sample_collection .cards ._card p{
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.cta{
    background-color:var(--secondary-color);
    padding: 40px 0px;
    text-align: center;
}
.cta a.comm-btn{
    margin: auto;
}

.cta a.comm-btn:hover{
    background-color: var(--white);
    color: var(--primary-color);
}

.capabilities{
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
    max-width: 780px;
}

.capabilities div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: calc(20% - 38.4px);
}

.text_box div{
    padding: 24px;
    border-radius: 8px;
    background-color: #FEF7F3;
    height: 100%;
}

.text_box div h3{
    color: var(--primary-color);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.accrediation_images{
    gap: 100px;
}

.read_more_btn{
    padding: 0;
    border: none;
    background: none;
    text-align: left;
    color: var(--primary-color);
}

.faq .accordion-item{
    border: none;
    border-bottom: solid var(--secondary-color) 1px;
}

.faq .accordion-item button{
    font-weight: 600;
}

.faq .accordion-item .accordion-body{
    padding-top: 0 !important;
}

.faq .accordion-item .accordion-button::after{
background-image: url('../images/faq-arrow.svg');
}

.accordion-button:not(.collapsed){
    background-color: transparent;
    color: var(--primary-color);
}

.faq .accordion-button:focus{
    border: none !important;
    box-shadow: none !important;
}

.thankyou_container .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
    padding: 80px 0;
}

.thankyou_container .container img{
    width: 250px;
}

table.dataTable thead .sorting_desc,
table.dataTable thead .sorting{
    background-color: var(--primary-color) !important;
}

 #admin form h2{
    text-align: center;
 }

 #admin table {
      width: 100%;
      max-width: 750px;
      border-collapse: collapse;
      margin: 20px auto;
    }
   #admin table, #admin th,#admin td {
      border: 1px solid #ddd;
    }
    #admin th,#admin td {
      padding: 10px;
      text-align: center;
    }
    #admin th {
      background-color: #5C2D91;
      color: white;
    }
    #admin .login_container {
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      justify-content: center;
    }
   #admin .login_container form {
      width: 100%;
      max-width: 400px;
      padding: 20px;
      border-radius: 16px;
      border: solid rgba(0, 0, 0, 0.25) 1px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    #admin .login_container form button,
    .admin_container .top_head p a {
      background-color: #5C2D91;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 16px 24px;
      transition: 0.3s all;
      cursor: pointer;
    }
    #admin .login_container form button:hover,
    .admin_container .top_head p a:hover {
      background-color: #451e72ff;
    }
    #admin .login_container form input {
      border: solid rgba(0, 0, 0, 0.25) 1px;
      padding: 12px 24px;
      border-radius: 8px;
      box-sizing: border-box;
    }
    #admin .login_container form input:focus {
      border: solid #5C2D91 1px;
    }
   #admin .login_container form h1 {
      margin-bottom: 24px;
      text-align: center;
      margin-top: 0;
    }

     .admin_container{
    width: 100%;
    max-width: 750px;
    margin: auto;
}

.admin_container .top_head{
        display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin_container .top_head p{
    margin: 0 !important;
}

        .admin_container table {
      width: 100%;
      max-width: 750px;
      border-collapse: collapse;
      margin: 20px auto;
    }
    .admin_container th, .admin_container td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: center;
    }
    .admin_container th {
      background: #5C2D91;
      color: white;
    }
    #about_more{
        display: none;
    }

    .dt-button.buttons-excel.buttons-html5{
            margin-bottom: 16px;
    background: var(--primary-color);
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    color: var(--white);
    transition: all 0.6s 
ease;
    }

     .dt-button.buttons-excel.buttons-html5:hover{
        background: var(--secondary-color);
     }

     table.dataTable.display tbody td {
    color: black;
    font-weight: 400;
}

     #tblresult_filter input{
        padding: 12px 24px;
     }

     #banner-carousel-mobile a,
     #banner-carousel-mobile a img{
        transform: none !important;
     }

     @media  (max-width: 1600px){
        .hero_banner_container .slick-dotted.slick-slider,
        .hero_banner_container .slick-dotted.slick-slider{
            margin-bottom: 0 !important;
        }
.hero_banner_wrapper{
    width: 65%;
    padding: 40px 0px 40px 0 !important;
}
    .hero_banner_form {
        right: 0;
        width: 35%;
        margin: 0;
    }
     }

     @media (max-width: 1366px){
.hero_banner_wrapper{
    width: 60%;
}
    .hero_banner_form {
      
        width: 40%;
       
    }
     }
  
@media (max-width: 1600px) {
    .main-banner header .top-phone-btn{
        font-size: 26px;
    }
     .sample_collection .cards {
        width: 60%;
     }
     .sample_collection .content {
        width: 38%;
     }
     .health_package_container .footer_content {
        font-size: 20px;
     }
    .health_package_container .footer_content a.comm-btn{
        padding: 12px;
    }
    .footer-sticky .main-title {
    font-size: 26px;
    line-height: 34px;
}
    .about_content{
        width: 48%;
    }
    .section-padding {
    padding: 70px 0px;
}
    .main-title {
    font-size: 32px;
    line-height: 40px;

}
     .desktop_img{
        display: none !important;
    }
    .mobile_img{
    display: block;
}

    .hero_banner_container .slick-dotted.slick-slider {
    margin-bottom: 30px;
}
    .container{
        max-width: 95%;
    }
}


@media (max-width: 1200px) {
    .health_package .content{
        min-height: 190px;
    }
    .health_package .content ul {
        flex-direction: row;
    }
     .health_package .content ul li{
        font-size: 14px;
     }
        .health_package .content ul li img{
            width: 20px;
        }
    .form-bg form p small{
        display: block;
        width: 100%;
    }
    .slick-dotted.slick-slider{
        margin-bottom: 0;
    }
    .hero_banner_container .slick-dots{
        left: unset;
    }
    .desktop_break{
        display: none;
    }
    .sample_collection .content h2 {
    text-align: left !important;
    font-size: 24px;
    line-height: 30px;
    margin: unset;
}
.sample_collection .content{
    gap: 16px;
}
    .sample_collection{
        flex-direction: column;
        gap: 24px;
    }
 .sample_collection>div{
    width: 100% !important;

 }
 .sample_collection .cards ._card{
    width: 100%;
    align-items: center;
    text-align: center;
 }
 
    .tests_slider_wrapper{
        padding: 0 20px;
    }

    .health_package_container{
        gap: 20px;
    }

    .health_package{
    width: calc(50% - 10px);
    }
   
   
    .container {
        max-width: 100%;
    } 
    .main-title-white{
        font-size: 50px;
    }
    .main-banner:before{
        display: none;
    } 
    .book-consultation-btn{
        font-size: 14px;
    }
    .show-ipad{
        display: block;
        margin-bottom: 30px;
    }
    .section-padding.safety-measures-bg{
        padding-top: 10px;
    }
    .safety-measures-bg:before{
        background-image: none;
    }
    .packages-bg .packages-content ul li, .packages-bg .package-footer .package-footer-price{
        width: 100%;
    }
    .reports-bg, .packages-bg .package-footer{
        flex-wrap: wrap;
        gap: 20px;
    }
    .testimonial-section{
        padding-left: 20px;
        padding-bottom: 0;
    }
    footer{
        padding: 20px 0px 110px 0px;
    }
    .footer-sticky .main-title{
        font-size: 30px;
    }
}

@media (max-width: 1000px) {  
    .bottom_bar{
        flex-direction: column;
    }
     .bottom_bar>div{
        width: 100%;
     }
    .about_content{
        margin-top: 20px;
        text-align: center;
    }
    .about_content a{
        justify-content: center;
    }
    .sample_collection .cards{
    flex-direction: column;
    gap: 24px;
 }  
    .section-padding{
        padding: 60px 0px;
    }    
    body.padd-top{
        padding-top: 70px;
    }
    .main-banner header .logo img{
        max-height: 50px;
    }
    .main-banner header .top-phone-btn{
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }
    .main-banner header .top-phone-btn span, .main-banner header a.top-url{
        display: none;
    }    
    ul.home-icon-box{
        flex-wrap: wrap;      
        gap: 20px;  
    }
    ul.home-icon-box li{
        width: 30%;
    }
    ul.std-info-icon-box{
        flex-wrap: wrap;;
    }
    ul.std-info-icon-box li{
        width: 47%;
    }
    .mob-pad-bot-0{
        padding-bottom: 0px;
    }
    .v-line{
        border-right: none;
    }
    form{
        margin-bottom: 40px;
    }
    .home-sample-collection-bg{
        flex-wrap: wrap;
    }
    .home-sample-collection-bg ul.home-sample-collection-icons{
        width: 100%;
    }
    .testimonials-carousel .testimonials-box{
        min-height: 400px;
    }
    footer{
        text-align: center;
    }
    footer ul{
        justify-content: center;
        margin: 20px 0px 0px 0px;
    }
    .have-a-question-bg{
        flex-wrap: wrap;
        justify-content: center;
    }
    .have-a-question-bg .have-a-question-content{
        width: 100%;
        text-align: center;
    }
    .footer-sticky .main-title{
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 760px) {
        .about_content {
        width: 100%;
    }

    .text_box div{
        text-align: center;
    }

        .footer-sticky .row .col-md-8.col-sm-12 {
        width: 60%;
    }

        .footer-sticky .row .col-md-4.col-sm-12 {
        width: 40%;
        padding: 0;
    }
        .footer-sticky .main-title {
        font-size: 18px;
        text-align: left;
    }

    .testimonials-carousel .testimonials-box .testimonials-box-author{
        margin-top: 24px;
    }

        .google-review-bg {
        min-height: 100px;
        margin-bottom: 20px;
        background: url('../images/google-review-mob.jpg') center center no-repeat #fff7f4;
        background-size: 90%;
    }
        .form-bg p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
        .form-bg p br {
        display: none;
    }
    .bottom_bar ul {

    flex-direction: column;
}

   .slick-dots{
        left: unset;
    }

    footer .logo_section>img{
        width: 200px;
    }

    .footer_cards{
        flex-direction: column;
    }
     .footer_cards>div{
        width: 100%;
     }

    .accrediation_images{
        gap: 20px;
    }

    .accrediation_images img{
        height: 60px;
        width: auto;
    }

    .mis_vis img{
        width: 50px;
    }
    .mis_vis {
        gap: 30px;
    }
    
    #test_slider .test{
        padding: 20px;
    }
    .health_package_container{
        gap: 20px;
    }

    .health_package,
    .health_package .content{
    width: 100%;
    min-height: unset;
    }
   .health_package .footer_content{
    position: static;
   }
    .mobile_menu{
        width: 40px;
        height: 40px;
        display: block;
    }
    header nav{
        position: fixed;
        top: 0;
        width: 200px;
        right: 0;
        height: 100vh;
        background-color: white;
        transform: translateX(100%);
        transition: 0.3s all;
        z-index: 9999;
    }
     header nav.active{
        transform: translateX(0);
     }
     header nav .mobile_menu{
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--primary-color);
           width: 24px;
        height: 24px;
     }
   .main-banner header nav ul{
        flex-direction: column;
        gap: 5px;
        padding-top: 100px;
      }
       header nav ul li a{
        padding: 10px 20px;
        display: block;
        width: 100%;
       }
    .hero_banner_wrapper{
        width: 100%;
        padding: 0 !important;
    }
     .hero_banner_form{
        position: static;
        transform: none;
        width: 100%;
    }
    html, body, footer{
        width: 100%;
		overflow-x: hidden;
	}
    .main-banner{
        padding: 0;
    }
    ul.why-choose-us-icon-box{
        flex-wrap: wrap;
    }
    ul.why-choose-us-icon-box li{
        width: 45%;
    }
    ul.why-choose-us-icon-box li strong{
        font-size: 30px;
        padding: 10px 0px;
    }
    ul.home-icon-box li, ul.home-safety-icon-box li{
        width: 100%;
    }
    .main-banner-video{
        display: none;
    }
    .main-banner-video-mobile{
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        z-index: -1;
        opacity: 0.2;
        display: block;
    }
    .main-banner header .book-consultation-btn{
        display: none;
    }
    .main-banner header .top-phone-btn{
        background: var(--primary-color);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.6s ease;
    }
    .form-bg{
        margin: 0;
    }
    .main-banner header .top-phone-btn img{
        filter: brightness(0) invert(1);
        max-width: 24px;
    }
    ul.std-info-icon-box li{
        width: 100%;
    }
   .main-banner header .top-phone-btn:hover{
        background: var(--secondary-color);
    } 
    .orange-bg, .orange-bg .text-end{
        text-align: center !important;
    }
    .orange-bg .comm-btn{
        margin-top: 30px;
    }
    .show-desktop{
        display: none;
    }
    .show-mobile{
        display: block;
    }
    .main-title{
        font-size: 28px;
    }
    .home-sample-collection-bg ul.home-sample-collection-icons{
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }
    .home-sample-collection-bg ul.home-sample-collection-icons li{
        width: 100%;
    }
    .packages-bg .packages-content p{
        height: auto;
    }
        .testimonials-carousel .testimonials-box {
        min-height: unset;
    }
  
    footer ul li a{
        font-size: 13px;
    }
    footer{
        padding: 20px 0px 70px 0px;
    }
 
    .footer-sticky .text-end{
        text-align: center !important;
    }
    /* .footer-sticky a.comm-btn{
        margin-top: 20px;
    } */
}

@media screen and (max-width:500px) {
     .capabilities {
        gap: 24px;
     }
    .capabilities div{
  width: calc(50% - 12px);
}
}
.form-bg .form-pad form input#submit_form[disabled]{
    cursor: not-allowed;
    background-color: gray !important;
    opacity: 0.8;
}

