@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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smotthing: antialiased;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.with-fancybox {
    overflow: auto;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    border-radius: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffe0d8;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #E21212;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #E21212;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}


.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.btn-close {
    box-shadow: none !important;
    border: none;
}

/******custom class */
.form-control {
    color: white;
    border-radius: 9px;
}

/* .form-select {
    color: #424242;
} */

.form-select option {
    color: #424242;
}

.shadow1 {
    box-shadow: 0px 4px 16.2px rgba(0, 0, 0, 0.11);
}

.padding {
    padding: 80px 0;
}

.radius {
    border-radius: 20px;
}

.radius2 {
    border-radius: 40px;
}

.heading {
    font-size: clamp(17px, 3vw, 32px);
    line-height: 41px;
}

.heading1 {
    font-size: clamp(17px, 3vw, 25px);
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.color1 {
    color: #424242;
}

.color2 {
    color: #E21212;
}

.color3 {
    color: #0A3F6B;
}

.weight {
    font-weight: 400;
}

.weight2 {
    font-weight: 700;
}

.bg {
    background-color: #E4F3FF;
}

.bg1 {
    background-color: #E21212;
}

.bg2 {
    background-color: #0A3F6B;
}

.blur_bg {
    background: rgba(228, 243, 255, 0.73);
    backdrop-filter: blur(34.9px);
}

.text_bg {
    background-color: #E21212;
    padding: 4px 25px;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    width: max-content;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn1 {
    display: inline-block;
    background-color: #FFE1E1;
    border: 1px solid transparent;
    font-weight: 600;
    transition: all 0.6s ease;
    border-radius: 8px;
    padding: 10px 25px;
}

.btn1:hover {
    border: 1px solid #FFE1E1;
    background-color: transparent;
    color: #FFE1E1;
}

.btn1 svg path {
    transition: all 0.6s ease;
}

.btn1:hover svg path {
    fill: #FFE1E1;
}

.btn2 {
    display: inline-block;
    background-color: #0A3F6B;
    border: 1px solid transparent;
    font-weight: 600;
    transition: all 0.6s ease;
    border-radius: 8px;
    padding: 10px 25px;
    width: max-content;
}

.btn2:hover {
    border: 1px solid #0A3F6B;
    background-color: transparent;
    color: #0A3F6B !important;
}

.btn2 svg path {
    transition: all 0.6s ease;
}

.btn2:hover svg path {
    fill: #0A3F6B;
}

.whatsappcall {
    display: none;
}

.scrolltop {
    position: fixed;
    bottom: 19px;
    right: 9px;
    transition: all 0.5s ease;
    z-index: 100;
    opacity: 0;
}

.scrolltop.active {
    opacity: 1;
}

.scrolltop dotlottie-wc {
    width: 87px !important;
    height: 87px !important;
    rotate: 180deg;
}

.scrolltop-trigger {
    cursor: pointer;
}

/************header */
.navbar1 input[type="checkbox"],
.navbar1 .hamburger-lines {
    display: none;
}

.navbar1 {
    position: fixed;
    width: 100%;
    /* background: #fff; */
    color: #000;
    z-index: 1000;
    padding: 20px 0;
    margin: 0 auto;
}

header .navbar1 {
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
}

.navbar1 .logo {
    width: 175px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: 0px 33px 0px 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0px 1px 10.9px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(59.1px);
}

.menu-items {
    display: flex;
    align-items: center;
    column-gap: 32px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.menu-items li {
    padding: 37px 0;
}

.menu-items li a {
    font-weight: 500;
    transition: all 0.5s ease;
}

.menu-items li a:hover {
    color: #E21212;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

header .dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-toggle::after {
    vertical-align: middle;
}

/* header .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0px 3px 7px #94949454;
    min-width: 16rem;
    top: 100%;
    background-color: #0A3F6B;
} */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #0A3F6B;
    z-index: 100;
    border: none;
    border-radius: 0;
    box-shadow: 0px 3px 7px #94949454;
}

header .dropdown-item {
    color: white;
    transition: all 0.5s ease;
    padding: 10px 12px;
}

header .dropdown-item:hover {
    background-color: transparent;
    color: white !important;
    padding-left: 16px;
}

.para {
    width: 92%;
}

.slider-nav {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
    position: static;
    background-color: #0A3F6B;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.slider-nav-round .slider-nav::before,
.slider-nav-square .slider-nav::before {
    position: static;
    content: none;
}

.slider-nav-round .slider-nav::after,
.slider-nav-square .slider-nav::after {
    background: transparent;
    position: static;
    content: none;
}

.slider-nav-round .slider-nav::after {
    -webkit-mask: none !important;
    mask: none !important;
    background-image: url(../images/prev.png) !important;
    background-repeat: no-repeat;
    background-size: contain;
}

.slider___nav {
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    right: 0;
    top: -66px;
}

.icn1 {
    border: 1px solid white;
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.add {
    width: 51%;
    display: inline-block;
}

.form_box {
    background: white;
    border-radius: 30px;
    padding: 30px 24px;
}

.formrow {
    margin-top: -340px;
}

footer {
    background: #022A4B;
}

footer .caplogo {
    transform: translate(-20px, 14px);
    width: 283px;
}

/* section.other_banner .card {
    padding: 168px 0 66px 0;
} */

section.other_banner .heading {
    font-size: clamp(17px, 3vw, 36px);
    margin-bottom: 7px;
}

.btn__1 {
    background: transparent;
    border: 1px solid #FFE1E1;
    color: #FFE1E1;
    transition: all 0.6s ease;
}

.btn__1:hover {
    background: #FFE1E1;
    color: #E21212;
    border: 1px solid transparent;
}

.btn__1:hover svg path {
    fill: #E21212;
}

section.other_banner .card-img-overlay {
    background: linear-gradient(0deg, #07252F 2.15%, rgba(0, 0, 0, 0) 115.38%);
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 66px !important;
}

section.other_banner .card img {
    object-fit: cover;
}

section.microarray_what .aboutimg {
    position: relative;
    height: 100%;
}

section.microarray_what .aboutimg img {
    height: 100%;
    object-fit: cover;
}

section.microarray_what .aboutimg::before {
    position: absolute;
    content: "";
    border: 3px solid white;
    border-radius: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 9px;
}

section.importance {
    background: url(../images/recommended-bg.webp) no-repeat center center fixed;
    background-size: cover;
}

section.importance .chooseimg {
    position: absolute;
    left: 12px;
    bottom: -26px;
    width: 400px;
    border-radius: 36px;
    border: 6px solid white;
    height: 531px;
    object-fit: cover;
}

.custom__list li {
    list-style: disc;
    margin-left: 1.2rem;
}

.customlist li {
    margin-left: 1rem;
}

.box1 {
    padding: 20px;
    height: 100%;
    cursor: pointer;
    border: 1px solid #0A3F6B;
}

.microarray_service_body {
    overflow: initial;
}

.stickyservice {
    position: sticky;
    top: 143px;
}

section.microarray_service .service_title {
    width: 80%;
}

section.test_work .swiffy-slider .slider-container h4 {
    font-size: 20px;
}

.service_box {
    padding: 41px 30px;
    border-radius: 28px;
}

section.why_choose .box {
    padding: 50px 40px;
}

section.why_choose .why_title {
    width: 87%;
}

/* faqs styling */

section.faq .question__faqs {
    padding: 20px 80px 20px 17px;
    border-radius: 9px;
    font-size: 1rem;
    height: 75px;
}

section.faq .wrapper_child {
    border: 1px solid #0A3F6B;
    border-radius: 11px;
}

section.faq .answercont {
    color: #424242;
}

.answer {
    padding: 18px 11px 20px;
    box-sizing: border-box;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* faqs styling end */

section.question {
    background: url(../images/question_bg.webp) no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    overflow-y: hidden;
}

section.page_banner {
    background: url(../images/service_banner.webp) no-repeat center center;
    background-size: cover;
    padding: 231px 0;
    padding-bottom: 50px;
}

section.service_body .service_box1 {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 57.76%, rgba(0, 0, 0, 0.7) 103.71%);
    padding: 37px 26px;
    height: 100%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

section.service_body .card img {
    transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
    object-fit: cover;
}

section.service_body .card:hover img {
    scale: 1.1;
}

section.service_body .card {
    overflow: hidden;
}

section.service_body .button_div {
    position: absolute;
    top: 25px;
    right: 25px;
}

section.service_body .card .button {
    border: none;
    white-space: nowrap;
    overflow: hidden;
    background: none;
}

section.service_body .card .button__icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    position: relative;
    color: var(--clr);
    background-color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

section.service_body .card .button__icon-svg--copy {
    position: absolute;
    transform: translate(-281%, 281%);
}

section.service_body .card:hover .button__icon-svg:first-child {
    transition: transform 0.4s ease-in-out;
    transform: translate(281%, -281%);
}

section.service_body .card:hover .button__icon-svg--copy {
    transition: transform 0.4s ease-in-out 0.1s;
    transform: translate(0);
}

.modal-content {
    background: linear-gradient(180deg, #075ca2d6 11%, #054887bf 100%);
    backdrop-filter: blur(6px);
    border-radius: 21px;
}

#CytoscanModal .modal-title {
    color: white !important;
}

#CytoscanModal .custom__list li {
    color: white !important;
}

.btn-close {
    background: url(../images/cross.png) center / 1em auto no-repeat;
    opacity: 1;
}

.modal-body {
    padding-bottom: 24px;
}

/* .modal-body .form_div {
    flex-direction: column !important;
    gap: 0 !important;
} */

.form-control {
    padding: 10px 13px;
    /* background-color: white !important;
    border: 1px solid transparent; */
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1.02749px solid rgba(255, 255, 255, 0.43);
    color: white !important;
}

textarea {
    resize: none;
}

.form-select {
    padding: 10px 13px;
    border-radius: 9px;
    /* background-color: white !important;
    color: #7c7c7c; */
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1.02749px solid rgba(255, 255, 255, 0.43);
    color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5 L8 11 L14 5'/%3E%3C/svg%3E") !important;
}

.form-control::placeholder {
    color: white;
}

.table {
    table-layout: fixed;
}

.table thead {
    vertical-align: middle;
}

.table thead th {
    background: #0A3F6B;
    border-bottom: 1px solid transparent;
    color: white;
    font-size: 20px;
    padding: 8px 12px;
}

.table>:not(caption)>*>* {
    padding: 14px 12px;
    border: 1px solid #88bee8;
}

.table>tbody {
    vertical-align: middle;
}

section.fordoctor .service_box {
    margin-top: -462px;
    position: relative;
    z-index: 3;
}

section.offered img {
    object-fit: cover;
    height: 50vh;
}

section.testsoffered {
    margin-top: -300px;
    position: relative;
    z-index: 3;
}

section.testsoffered .test_box {
    background-color: white;
    padding: 13px;
    /* box-shadow: 0px 1px 14.2px rgba(0, 0, 0, 0.12); */
    border: 1px solid #e0e0e0;
}

section.testsoffered .test_box img {
    height: 237px;
    object-fit: cover;
    border-radius: 20px;
}

section.testsoffered .slider___nav1 .slider-nav {
    background-color: white;
}

section.get_in_touchdoctor .form_box {
    background-color: #0A3F6B;
}

section.expertteam {
    padding-bottom: 150px;
}

section.expertteam .team_img {
    object-fit: cover;
    height: 100%;
}

section.expertteam .box {
    padding: 34px 26px;
    border-radius: 30px;
}

section.expertteam .team-member {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 35px;
}

section.expertteam .icon-box {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

section.expertteam .icon-box img {
    width: 90px;
    height: 50px;
}

section.expertteam .text-box {
    flex: 1;
}

section.questionsfaq {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -75px;
}

section.questionsfaq .wrapper_child {
    border-bottom: 1px solid white;
}

section.questionsfaq .wrapper_child:first-child {
    border-top: 1px solid white;
}

.question__faqs {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 0px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
}

.question__faqs::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question__faqs.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    color: white;
}

section.questionsfaq .answer {
    padding: 0 0 20px;
}

.question.active+.answercont {}

section.request_consultation .consult__row {
    padding: 25px 20px;
}

section.request_consultation .consult__row img {
    height: 528px;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid white;
}

section.blog_page .card {
    overflow: hidden;
}

section.blog_page .card:hover img {
    scale: 1.2;
    /* filter: grayscale(0); */
}

section.blog_page .card img {
    height: 470px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* filter: grayscale(1); */
}

section.blog_page .blog_content h5 {
    font-size: 18px;
    line-height: 24px;
}

section.blog_page .blog_content {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(3.35px);
    border-radius: 23px;
    padding: 20px 14px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.blog_page .card:hover .blog_content {
    transform: translateY(-6px);
}

.blog_line {
    height: 1px;
    background: #C7C7C7;
}

section.blog_page .card-img-overlay {
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 16px 12px;
}

section.blog_page .blog_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.other_banner .blog_banner_heading {
    font-size: clamp(17px, 2vw, 26px);
    line-height: normal;
    width: 80%;
    margin: 0 auto;
}

.head_truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.blog_details .blog_details_img {
    height: 466px;
    object-fit: cover;
    border-radius: 30px;
}

section.blog_details .blog_title {
    width: 92%;
}

section.blog_details .blog_details_content {
    background-color: white;
    box-shadow: 0px 0px 16.2px rgb(0 0 0 / 12%);
    border-radius: 50px;
    padding: 44px 22px;
}

section.blog_details .details_date {
    padding: 6px 22px;
    background-color: #f0f0f0;
}

section.blog_details .blog_details_content h5 {
    color: #E21212;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}

section.blog_details .blog_details_content ul {
    margin-bottom: 25px;
}

section.blog_details .blog_details_content ul li {
    list-style: disc;
    margin-left: 1.2rem;
    color: #424242;
    margin-bottom: 8px;
}

section.blog_details .blog_details_content ul li::marker {
    color: #0A3F6B;
}

section.blog_details .blog_side_bar {
    background-color: #E4F3FF;
    /* box-shadow: 0px 0px 16.2px rgb(0 0 0 / 12%); */
    padding: 26px 19px;
    border-radius: 25px;
}

section.blog_details .blog_side_bar img {
    width: 168px;
    height: 100%;
    border-radius: 9px;
    object-fit: cover;
}

section.blog_details .blog_side_bar .recent_blog_title {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

section.blog_details .blog_side_bar .side_date {
    font-size: 12px;
}

section.blog_details .blog_side_bar .img_box {
    flex: 0 0 97px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.blog_details .blog_side_bar .latest_tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 11px;
}

section.blog_details .blog_side_bar .tags_div {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #0A3F6B;
    color: #0A3F6B;
    font-weight: 500;
    padding: 5px 17px;
    border-radius: 6px;
    transition: all 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

section.blog_details .blog_side_bar .tags_div:hover {
    background: #0A3F6B;
    border: 1px solid #0A3F6B;
    color: white;
}

section.blog_details .stickyservice {
    top: 122px;
}

section.testimonial .test_box {
    height: auto;
}

section.lablocation .input-group {
    gap: 10px;
}

section.lablocation .input-group .btn2 {
    border-radius: 9px !important;
}

section.lablocation .input-group1 {
    position: relative;
    flex: 1;
}

section.lablocation .input {
    border: 1px solid #E5E5E5;
    border-radius: 9px;
    background: #F5F5F5;
    padding: 10px 13px;
    font-size: 1rem;
    color: #939393;
    transition: border 200ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

section.lablocation .user-label {
    position: absolute;
    left: 15px;
    color: #939393;
    pointer-events: none;
    transform: translateY(12px);
    transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

section.lablocation .input:focus,
section.lablocation .input:valid {
    outline: none;
    border: 1px solid #E5E5E5;
}

section.lablocation .input:focus~label,
section.lablocation .input:valid~label {
    transform: translateY(-50%) scale(0.9);
    background-color: white;
    padding: 0 .2em;
    color: #939393;
    left: 2px;
}

section.lablocation .card {
    border-radius: 20px;
    padding: 20px 16px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 7.9px rgba(0, 0, 0, 0.11);
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

section.lablocation .card:hover {
    border: 0.5px solid #022A4B;
    transform: translateY(-10px);
}

section.lablocation .card .labheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.lablocation .card .labheading .locpin {
    background: #E4F3FF;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 993px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        position: absolute;
        top: 100%;
        left: -15px;
        min-width: 16rem;
        pointer-events: none;
    }

    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* @media (min-width: 576px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
} */