@import url(https://pt.labvantage.com/wp-content/themes/labvantage/fonts.css);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nunito Sans";
    font-size: 16px;
    line-height: 26px;
    overflow-x: hidden;
    color: #55768E;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

ul,
li,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    margin: auto;
}

p {
    font-size: 18px;
    line-height: 28px;
    color: #55768E;
    font-weight: 400;
}



.img-hover {
    overflow: hidden;
    border-radius: 20px;

}

.img-hover img {
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
}

.img-hover img:hover {
    transform: scale(1.05);
}

.wrapper {
    max-width: calc(100% - 160px);
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Container Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    /* half of column padding */
    margin-right: -15px;
}

/* Column 50% */
.col-50 {
    width: 50%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-60 {
    width: 60%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-40 {
    width: 40%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-70 {
    width: 70%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-55 {
    width: 55%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-45 {
    width: 45%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.col-30 {
    width: 30%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

/* Column 33% */
.col-33 {
    width: 33.33%;
    padding-left: 15px;
    /* gutter */
    padding-right: 15px;
    box-sizing: border-box;
    /* make padding part of width */
}

.com-pad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.comPad80 {
    padding: 80px 0;
}

.comPad60 {
    padding: 60px 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mt-40 {
    margin-top: 40px;
}

.btn-default {
    width: auto;
    height: auto;
    padding: 12px 35px;
    box-shadow: 0px 4px 21px 0px #0000000F;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    background: #F1823B;
    border-radius: 100px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.txt-orange {
    color: #F1823B !important;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.btn-default:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-default:hover {
    background: #e96a1d;
    /* deeper orange */
    /* transform: scale(1.05); */
    box-shadow: 0 0 20px rgba(241, 130, 59, 0.6);
}


/* header */
.site-header {
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    left: 0;
}

.fixed-header {
    box-shadow: 0 2px 23px 0 rgba(0, 0, 0, .051);
}

.menu-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
}

.logo {
    width: 240px;
}

.logo a {
    display: block;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

.main-nav>ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    background: #fff;
    width: 250px;
    z-index: 10;
    transform: translateY(20px);
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, .12);
}

.sub-menu ul li:not(:last-child) a {
    border-bottom: 1px solid #AEAEAE4D;
}

.sub-menu ul li a {
    display: block;
    padding: 10px 0;
    margin: 0 10px;
}

.drp-menu:hover .sub-menu {
    display: block;
    top: 100%;
    transform: translateY(0);
}

.drp-menu:hover>a::before {
    transform: translateY(-50%) rotate(180deg);
}

.main-nav>ul li a {
    text-decoration: none;
    color: #7C7C7C;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4px;
    transition: color 0.3s, text-decoration 0.3s;
}

.main-nav>ul li:hover>a {
    text-decoration: underline;
    color: #4EC5F8;

}

.main-nav>ul li:hover .book-btn {
    text-decoration: none;
}




/* hamberger menu */
/* Hamburger icon */
.hamber-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamber-icon span {
    display: block;
    width: 25px;
    border-bottom: 1px solid #000;
    border-radius: 2px;
}

/* Black overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #124061;
    padding: 40px 20px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}



/* Active states */
.mobile-menu.active {
    display: flex;
}

.menu-overlay.active {
    display: block;
}






/* common-banner-sec */
.common-banner-sec {
    position: relative;

}

.common-banner-sec img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.common-banner-sec .limeStrategyImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.common-banner-sec .image {
    position: relative;
    padding-top: calc(700 / 1440 * 100%);
}

.common-banner-sec .limeStrategyImg {
    position: relative;
    padding-top: calc(700 / 1440 * 100%);
}

/* .common-banner-sec .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;

} */


.banner-content {
    position: absolute;
    max-width: 500px;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.limeBannerContent {
    max-width: 867px;
}

.limeBannerContent h1 {
    font-family: 'frutiger-regular';
}

.limeBannerContent p {
    max-width: 650px;
    font-family: 'frutiger-light';
    font-weight: 300;

}

.limeBtn {
    padding: 14px 25px 0 28px;
    margin-top: 20px;
    height: 48px;
    background-color: white;
    color: #124061;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 19.2px;
    border-radius: 100px;
    border: none;
    font-family: 'frutiger-regular';
    letter-spacing: -0.4px;


}

.banner-content .heading {
    font-size: 60px;
    line-height: 70px;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.72px;
}

.banner-content .text {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.24px;
}

.common-heading-box .heading {
    font-size: 40px;
    line-height: 50px;
    color: #124061;
    margin-bottom: 40px;
}

.certification-path-box .image {
    position: relative;
    padding-top: calc(321/618*100%);
}

.certification-path-box .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.certification-path-box .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-path-box .image,
.certification-path-box .content {
    grid-area: 1 / 1;
    width: 100%;
}

.certification-path-box .content {
    display: flex;
    align-items: center;
    padding: 58px 0;
    z-index: 2;
    justify-content: center;
    pointer-events: none;
}

.certification-path-box {
    display: grid;
}

.certification-path-box .content .heading {
    font-size: 34px;
    line-height: 43px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.certification-path-box .content .tick-list li {
    font-size: 28px;
    line-height: 38px;
    color: #fff;
}

.tick-list li {
    position: relative;
    padding-left: 35px;

}

.tick-list li:not(:last-child) {
    margin-bottom: 20px;
}


.certification-card {
    box-shadow: 0px 32px 32px 0px #00000052;
    background: #D9F1FC;
    border-radius: 16px;
    height: 100%;

}

.certification-card .inner-card-box {
    box-shadow: 0px 0px 0px 2px #FCFCFC1A inset;
    padding: 46px;
    backdrop-filter: blur(172px);
    border-radius: 16px;
    height: 100%;
}

.certification-card .inner-card-box .image {
    margin-bottom: 20px;
}

.certification-card .inner-card-box .content .heading {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
    color: #124061;
    text-transform: uppercase;
    text-align: center;
}

.certification-card .inner-card-box .content ul li {
    font-size: 24px;
    line-height: 34px;
    color: #55768E;
    cursor: pointer;
}

.certification-card .inner-card-box .content ul li:hover {
    text-decoration: underline;
}

.about-certification .desc p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}

.btn-margin {
    margin-top: 70px;
}


/* Hover State */
.book-btn:hover {
    background-color: #e67424;
    /* slightly darker orange */
}

.book-btn:hover::before {
    transform: translateY(-50%) translateX(4px);
    /* arrow nudges right */
}


.faq-sec {
    padding: 0 100px;
}

.faq-sec .accordian-item {
    box-shadow: 0px 10px 30px 0px #0000000D;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.faq-sec .accordian-item .accord-content {
    display: none;
    margin-top: 20px;
}

.accord-content p a {
    color: #2424f4;
}

.faq-sec .accordian-item .accord-hedaer {
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.faq-sec .accordian-item .accord-hedaer::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #F1823B;
    transition: transform 0.3s ease;
}

.faq-sec .accordian-item.active-item .accord-hedaer::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq-sec .accordian-item.active-item .accord-hedaer {
    font-weight: 700;
}

.faq-sec .accordian-item.active-item {
    background: #C3C3C30D;
    box-shadow: none;
}


/* footer */

.site-footer {
    padding: 32px 0;
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-top {
    margin-bottom: 32px;
}

.footer-left p {
    letter-spacing: 0.42px;
    color: #1B1B1B;
    opacity: 0.5;
    font-size: 14px;
    line-height: 20px;
}

.footer-logo {
    height: 40px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #1B1B1B;
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    opacity: 0.5;
    letter-spacing: 0.42px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #124061;
    opacity: 1;
}


/* //popup */

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
}

.popup-container .popup-content {
    background-color: #ffffff;
    padding: 30px 60px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.popup-container .popup-content .close {
    position: absolute;
    top: 27px;
    right: 28px;
    cursor: pointer;
}

.table-layout table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #AEAEAE66;
    margin-bottom: 20px;
    table-layout: fixed;
}

.table-layout th,
.table-layout td {
    padding: 8px 15px;
    border: 1px solid #AEAEAE66;
    text-align: left;
    font-size: 15px;
    color: #124061;
    background-color: white;
    font-size: 16px;
    line-height: 26px;
    width: 50%;
    word-wrap: break-word;
}

.table-layout th {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

}

.heading-popup-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 16px;
}

.heading-popup-box .heading {
    font-size: 24px;
    line-height: 34px;
    color: #124061;
}

.heading-popup-box .image {
    width: 55px;
    height: 55px;
    box-shadow: 0px 4px 21px 0px #0000001A;
    border-radius: 50%;

}

.desc .image {
    width: 200px;
}

.certificate-detail-box .inner-box .heading {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.4px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #124061;
}

.certificate-detail-box .inner-box {
    margin-bottom: 40px;
}

.certificate-detail-box .inner-box p,
.certificate-detail-box .inner-box ul {
    color: #55768E;
    font-size: 22px;
    line-height: 33px;
    font-weight: 400;
    margin-bottom: 0;
}

.certificate-detail-box .inner-box ul {
    margin-left: 20px;
}

.certificate-detail-box .inner-box li {
    list-style: disc;
}

.certificate-detail-box .inner-box ul li:not(:last-child) {
    padding-bottom: 16px;
}

.certificate-detail-box .inner-box .table-layout {
    max-width: 800px;
}

.certification-detail-sec .common-heading-box .heading {
    margin-bottom: 0;
}

.certification-detail-sec {
    padding-bottom: 60px;
}

.back-btn a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #124061;
    margin-bottom: 40px;
    margin-top: 20px;
}

.certification-detail-sec .table-layout th,
.certification-detail-sec .table-layout td {
    color: #55768E;
}


.productImage {
    position: relative;
    padding-top: calc(500 / 1440 * 100%);
}

.productImage img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-banner-content {
    max-width: 767px;
}

.product-banner-content p {
    max-width: 600px;
}

.fullySolutionSection {
    margin-top: 80px;
    margin-bottom: 80px;
}

.fullSolutionImg {
    position: relative;
    padding-top: calc(357 / 567 * 100%);
}

.fullysolutionContent {
    max-width: 590px;
}

.fullysolutionContent h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    color: #124061;

}

.fullysolutionContent p {

    font-size: 18px;
    line-height: 24px;
    padding-top: 16px;


}

.fullSolutionImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.labadvnatgeIot {
    max-width: 837px;
    padding: 100px 0;
    margin: auto;
}

.labadvnatgeIot h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;

}

.iotContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
    padding: 40px 0px 0 5px;
}

.iotContent li {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 400;
    font-style: Light Cn;
    font-size: 20px;
    line-height: 24px;
    vertical-align: middle;
    color: #FFFFFF;


}

.descisionSection {
    background-color: #D9F1FC;
}

.mobileDescision {
    max-width: 1212px;
    margin: auto;
    padding: 80px 0;
}

.mobileDescision h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #124061;
    max-width: 800px;
    margin: auto;

}

.decisionGrid {
    margin-top: 40px;
}

.decisionGrid ul {
    display: grid;
    padding: 0 114px;
    text-align: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.decisionGrid ul li {
    /* background-color: #124061; */
    background-color: #ffffff;
    font-weight: 400;
    font-style: Light Cn;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
    padding: 12px 60px;
    color: #124061;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

}

.decisionGrid ul li:hover {
    background-color: #124061;
    color: #ffffff;
}

.standoutIot {
    max-width: 1099px;
    margin: auto;

}

.standoutIot h5 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #124061;
    margin-bottom: 12px;

}

.standoutParaHeading {
    color: #F1823B !important;
}

.standoutIot p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    max-width: 531px;
    margin: auto;
    color: #55768ECC;

}


.standOutGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 40px;


}

.standOutCard {
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 35px 0px #00000024;

}

.standOutCard:hover {
    background-color: #124061;
    color: #ffffff;
}

.standOutCard:hover span {

    color: #ffffff;
}

.standOutCard:hover p {

    color: #ffffff;
}

.standOutCard:hover:nth-of-type(odd) {
    background-color: #124061;
}

.standOutCard:nth-of-type(odd) {
    background-color: #D9F1FD;
}

.standoutCardContent {
    padding: 33px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;


}

.standoutCardContent span {
    font-size: 24px;
    line-height: 30px;
    color: #124061;
    display: block;


}

.standoutCardContent p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #55768E;
    text-align: start;


}

.standOutSection {
    margin-top: 80px;
    margin-bottom: 80px;
}

.globalLabsLabel {
    max-width: 1269px;
    margin: auto;

}

.globalLabsCards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;


}

.globalLabsContent p {
    font-size: 18px;
    line-height: 20px;
    color: #F1823B;

}

.globalLabsContent h6 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    color: #124061;
    padding-top: 12px;

}

.globalLabsContent {
    text-align: center;
}

.labsCards {
    box-shadow: 0px 4px 22px 0px #0000000F;
    border-radius: 20px;
    background-color: #ffffff;

}

.labsCardContent span:nth-of-type(2) {
    font-size: 24px;
    line-height: 100%;
    color: #124061;

}

.labsCardContent span:nth-of-type(3) {
    font-size: 22px;
    line-height: 100%;
    color: #55768ECC;

}

.labsCardContent {
    padding: 12px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.labsCardContent img {
    margin: 0;
}

.bookDemoSection {
    margin: 80px 0;
}

.bookDemoCard .col-60 {
    width: 60%;
}

.bookDemoCard .col-40 {
    width: 40%;
    padding: 0;
}

.bookdemoCardContent {
    padding: 0 0 0px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bookDemoImg {
    position: relative;
    padding-top: calc(581 / 493 * 100%);
    height: 100%;
}

.bookDemoImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    object-fit: cover;
    border-radius: 16px;
}

.bookdemoCardContent p {
    font-weight: 400;
    font-style: Bold;
    font-size: 35px;
    line-height: 40px;
    color: #ffffff;
    padding-bottom: 40px;
    font-family: 'frutiger-light';


}

.bookdemoCardContent a {
    padding: 14px 28px;
    background-color: #ffffff;
    border-radius: 100px;
    text-align: center;
    border: none;
    width: 195px;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 19.2px;
    color: #124061;


}

.bookdemoCardContent a:hover {
    background-color: #124061;
    color: #ffffff;
    text-decoration: underline;
}

.crossIcon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    cursor: pointer;
    height: 30px;
    background-color: transparent;
    border: none;

}

.limeCustomers {
    margin-top: 40px;
}

.limeCustomers .wrapper {
    max-width: calc(100% - 28px);
}

.customerHeading {
    text-align: center;
}

.customerHeading h2 {
    padding-bottom: 20px;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    color: #124061;

}

.customerHeading p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.8px;

}

.customerLogo {
    margin-top: 20px;
    margin-bottom: 100px;
}

.customerLogoDiv {
    border-radius: 16.2px;
    border: 1px solid #AEAEAE4D;
}

.customerLogoImg {
    padding: 44px 41px;
}

.customerLogoImg img {
    height: 100%;
    width: 100%;
}

.customerLogo {
    padding-right: 10px !important;
}

.legacyHeading {
    text-align: center;
}

.legacyHeading h3 {
    padding-bottom: 12px;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    color: #124061;
    line-height: 50px;

}

.legacyHeading p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-style: Light Cn;
    font-size: 20px;
    line-height: 30px;
    color: #55768ECC;
    letter-spacing: -0.4px;

}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.legacyGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.legacyCard {
    box-shadow: 0px 32px 32px 0px #00000052;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 21px 20px;


}

.legacylogo img {
    margin: 0;

}

.legacyCardContent {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.legacycontent span {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    color: #124061;


}

.legacycontent p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-style: Light Cn;
    font-size: 18px;
    line-height: 140%;
    color: #55768E;
    max-width: 564px;

}

.legacyGrid .legacyCard:nth-child(6n + 1),
.legacyGrid .legacyCard:nth-child(6n + 4),
.legacyGrid .legacyCard:nth-child(6n + 5) {
    background-color: #D9F1FD;
    /* light blue */
}









.legacyDemoCard {
    max-width: 100%;
}

.legacyDemoImg {
    padding-top: calc(381 / 393 * 100%);
}

.legacydemoCardContent {
    max-width: 100%;
}

.legacydemoCardContent p {
    max-width: 719px;
}

.legacydemoCardContent a {
    font-family: 'frutiger-bold';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 19.2px;


}

.ue-scroll-to-cta {
    border: 1px solid white;
}

.switchingImg {
    position: relative;
    height: 100%;
    padding-top: calc(341 / 604 * 100%);
}

.switchingImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.switchingContent p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 140%;
    color: #124061;

}

.hundreadKnowMore {
    padding: 10px 31px;
    border-radius: 100px;
    background-color: #F1823B;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 168%;
    letter-spacing: 6%;
    color: #ffffff;
    margin-top: 40px;

}

.switchingSection {
    margin-bottom: 100px;
}

.switchingSection .col-50 {
    padding-left: 0;
    padding-right: 0;
}

.switchingSection .wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.limsPartnerHeading {
    text-align: center;

}

.limsPartnerHeading h4 {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    color: #124061;
    max-width: 600px;
    margin: auto;
    letter-spacing: -0.96px;

}

.limsPartnerHeading p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-style: Light Cn;
    font-size: 20px;
    line-height: 30px;
    padding-top: 12px;
    letter-spacing: -0.4px;

}

.limsPartnerListing ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 45px;
    row-gap: 35px;
}

.limsPartnerListing ul li {
    position: relative;
    padding-left: 40px;
    font-family: 'frutiger-light';
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;

    letter-spacing: -0.16px;
    color: #55768E;

}


.limsPartnerSection {
    margin-bottom: 100px;
}

.learnMore {
    text-align: center;
    margin-top: 20px;
}

.learnMoreBtn {
    background-color: #F1823B;
    color: #FFFFFF;
    height: 46px;
    border-radius: 100px;
    padding: 9px 32px;
    font-family: 'frutiger-regular';
    letter-spacing: -0.96px;

}

.globalLabsSection {
    background-color: #D9F1FC;
    padding: 80px 0;
}

.hunderedHeading {
    max-width: 715px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.hunderedHeading p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    vertical-align: middle;
    color: #124061;


}

.hundreadCardImg {
    position: relative;
    padding-top: calc(262 / 384 * 100%);

}

.hudreadCard {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border: 1px solid #80808066;
    border-radius: 10px;
    height: 100%;
}

.hudreadCard:hover {
    background-color: rgb(217, 241, 253);
    ;
}

.hudreadCard:hover a {
    text-decoration: underline;
}

.hudreadCard p {
    font-family: 'frutiger-regular';
    font-weight: 400;
    color: #124061;
    font-size: 18px;
    line-height: 26px;

}

.MobileLogo {
    display: none;
}

.hundreadCardImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.hundreadContent p {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #124061;


}

.hundredsSection {
    margin-bottom: 40px;
}

.knowBtn {
    background-color: #F1823B;
    border-radius: 100px;
    height: 46px;
    padding: 10px 31px;
    color: #ffffff;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 16px;
    line-height: 168%;
    letter-spacing: 2px;
    align-self: flex-start;
    /* Aligns the button to the left */

}

.hundreadContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 17px;
    height: 100%;
    gap: 30px;
    height: calc(100% - 265px);
}

/* .hudreadCard{
    height: 100%;
} */
/* .hundreadsSwiper .swiper-slide {
    height: auto !important;
} */

/* Position of navigation buttons */
.hundredsSection .swiper-button-prev,
.hundredsSection .swiper-button-next {
    position: absolute;
    background-color: #124061;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.hundredsSection .swiper-button-next svg,
.hundredsSection .swiper-button-prev svg {
    width: 20px;
}

.hundreadsSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto !important;
    align-items: self-start;
}

.hundreadsSwiper .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    border: 1px solid #D9D9D9 !important;
    background: transparent !important;
}

.hundreadsSwiper .swiper-button-next.swiper-button-disabled {
    opacity: 1 !important;
    border: 1px solid #D9D9D9 !important;
    background: transparent !important;
}

.hundreadsSwiper .swiper-button-next.swiper-button-disabled svg path {
    fill: #D9D9D9;
}



/* Adjust padding */
.hundreadsSwiper {
    padding-bottom: 80px !important;
}

.hundredsSection .swiper-button-next::after {
    content: '';
}

.hundredsSection .swiper-button-prev::after {
    content: '';
}

/* Position adjustments for next/prev buttons */
.hundredsSection .swiper-button-prev {
    left: calc(50% - 85px);
    bottom: 0;
    top: inherit;
    width: 80px;
    border-radius: 40px;
    height: 45px;
}

.hundredsSection .swiper-button-next {
    left: calc(50% + 10px);
    bottom: 0;
    top: inherit;
    width: 80px;
    height: 45px;
    border-radius: 40px;
}

.limsForm {
    padding: 40px 71px 55px 72px;
    background-color: #124061;
    text-align: center;
    border-radius: 24px;
}

.limsformheading p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 160%;
    color: #ffffff;
    letter-spacing: -0.96px;

}

.limsForm form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.limsForm .form-group {
    display: flex;
    gap: 24px;

}

.limsForm .form-group textarea {
    width: 100% !important;
    border-radius: 10px;
    height: 100%;
    padding-top: 20px;
    padding-left: 10px;
    height: 193px;
}

.limsForm .form-group input {
    height: 64px;
    border-radius: 10px;
    padding-left: 10px;
    width: 100%;
    border: 0;

}

.limsForm .submit-btn {
    align-self: start;

}

.limsForm .form-group input::placeholder {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #124061;
}

.limsForm .form-group textarea::placeholder {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #124061;
}


.form-group button {
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    height: 48px;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 19.2px;
    color: #124061;

}

.testimonialName {
    display: flex;
    margin-top: 18px;
    flex-direction: column;
}

.testimonialName span:nth-of-type(1) {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 150%;
    color: #151E3B;

}

.testimonialName span:nth-of-type(2) {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-style: Bold;
    font-size: 16px;
    line-height: 150%;
    color: #55768E;

}

/* .testimonialSwiper,
.swiper-wrapper,
.swiper-slide {
  height: auto !important;
} */

.worldWideRow {
    display: flex;
    align-items: center;

}

.worldwideHeading {
    max-width: 288px;
    margin: auto;
}

.worldwideHeading p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #124061;


}

.testimonialData p {
    max-width: 715px;
}

.worldWideRow .col-40 {
    width: 40%;
}

.worldWideRow .col-60 {
    width: 60%;
}

.WorldWideSection {
    margin-bottom: 100px;
}

.testimonialSwiper {
    height: 250px !important;
    /* Or set a fixed height like 500px */
    overflow: hidden !important;
}

.testimonialData p {
    color: #00000096;
    position: relative;
    opacity: 0.4;
}

.testimonialData p::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    height: 100%;
    width: 100%;
    box-shadow: rgb(139 129 123 / 43%) 0px -46px 42px -25px;
    z-index: 2;
}

.testimonialSwiper .testimonialData {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-top: 70px; */
}

/* .testimonialSwiper,
.swiper-wrapper,
.swiper-slide {
  height: 246px !important;
} */


.testimonialSwiper .swiper-slide-active .testimonialData p {

    color: #55768E;
    opacity: 0.7;
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 16px;
}

.testimonialSwiper .swiper-slide-active .testimonialData p::before {
    content: none;

}

.testimonialSwiper {
    position: relative;
    padding-left: 80px !important;
}

.testimonialSwiper .swiper-button-next {
    position: absolute;
    left: 0;
    top: inherit;
    bottom: 50px;
    background: #124061;
    border-radius: 100px;
    width: 44px;
    height: 75px;
}

.testimonialSwiper .swiper-button-next::after {
    content: '';
}

.testimonialSwiper .swiper-button-prev::after {
    content: '';
}

.testimonialSwiper .swiper-button-prev svg {
    width: 20px;
    transform: rotate(90deg);

}

.limsFormSection {
    margin-bottom: 100px;
}

.testimonialSwiper .swiper-button-next svg {
    width: 20px;
    transform: rotate(90deg);
}

.testimonialSwiper .swiper-button-prev {
    position: absolute;
    left: 0;
    top: 50px;
    background: #124061;
    border-radius: 100px;
    width: 44px;
    height: 75px;
}

.testimonialSwiper .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    border: 1px solid #D9D9D9 !important;
    background: transparent !important;
}

.testimonialSwiper .swiper-button-next.swiper-button-disabled {
    opacity: 1 !important;
    border: 1px solid #D9D9D9 !important;
    background: transparent !important;
}

.testimonialSwiper .swiper-button-next.swiper-button-disabled svg path {
    fill: #D9D9D9;
}


.coreLimsformSection .wrapper {
    display: flex;
    justify-content: center;
    padding-top: 140px;

}

/* formStart */
.limsMainForm {
    padding: 10px 30px;
    backdrop-filter: blur(60px);
    background-color: #FFFFFF99;
    border-radius: 24px;
    /* margin: 23px 0; */
    margin-bottom: 23px;


}

.limsInnerForm h2 {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 34px;
    line-height: 160%;
    color: #124061;

}

.formMain {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 16px;
}

.formData {
    max-width: 726px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.formData h1 {
    font-family: "Nunito Sans";
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -0.24px;
    color: #ffffff;

}

.formData p {
    text-transform: uppercase;
    font-family: "Nunito Sans";
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.72px;
    color: #ffffff;


}

.coreLimsformSection .wrapper form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.coreLimsformSection .wrapper form input,
select {
    padding: 26px 0 26px 19px;
    border-radius: 10px;
    border: none;
}

.coreLimsformSection .wrapper form input::placeholder {
    color: #124061;

}

.coreLimsformSection .wrapper form input,
.coreLimsformSection .wrapper form select {
    padding: 26px 0 26px 19px;
    border-radius: 10px;
    border: none;
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #124061;
}

.coreLimsformSection .wrapper form input:focus,
.coreLimsformSection .wrapper form select:focus {
    outline: none;
}


.coreLimsformSection .wrapper select {
    appearance: none;
    /* Standard */
    -webkit-appearance: none;
    /* Safari/Chrome */
    -moz-appearance: none;
    width: 100%;
}

.coreLimsformSection .wrapper .selectContainer {

    position: relative;
}

/* .coreLimsformSection .wrapper.selectContainer::after,
.coreLimsformSection .wrapper .countryContainer::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    background-image: url("https://pt.labvantage.com/wp-content/themes/img/downarrow.svg");
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
} */

/* Container */


/* Hide native checkbox */
.checkForm input[type="checkbox"] {
    display: none;
}

/* Label (clickable area) */
.checkForm label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    display: inline-block;
    font-family: "Nunito Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #124061;

}

/* Checkbox box */
.checkForm label::before {
    content: "";
    padding: 7px 7px;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border: 2px solid #F1823B;
    border-radius: 4px;
    background-color: transparent;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Checkmark shown when checked */
.checkForm input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid #F1823B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.coreLimsformSection .wrapper .countryContainer {

    position: relative;
}

/* formend */






.formCourses span {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.72px;
    color: #FFFFFF;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;

}

.formCourses span:first-child {

    padding-left: 0px;

}

.formCourses span:last-child::after {

    content: none;

}

.formCourses span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #ffffff;
    height: 100%;

}

.BookDemoCta {
    padding: 14px 28px;
    border-radius: 100px;
    background-color: #F1823B;
    color: #ffffff;
    font-family: "Nunito Sans";
    font-weight: 700;
    border: none;
    font-size: 14px;
    line-height: 19.2px;
    letter-spacing: -0.4px;


}

.typicalLimsHeading {
    text-align: center;
    padding-bottom: 40px;
}

.typicalLimsHeading h3 {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #124061;

}

.end-to-endContent span {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 34px;
    line-height: 48px;
    letter-spacing: -0.4px;
    color: #124061;

}

.end-to-endContent p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.4px;
    color: #55768E;
    padding-top: 16px;

}


.end-to-end-grid .tabContent {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 112px;
}

.end-to-endList {
    padding: 10px 17px;
}

.endtoendImg {
    position: relative;
    padding-top: calc(419 / 468 * 100%);
    height: 100%;
}

.endtoendImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}

.end-to-end-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #124061;
    margin-bottom: 100px;


}

.end-to-endList {
    border-right: 1px solid #124061;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;







}

.end-to-endList.active {
    background-color: #F1823B;
}

.end-to-endList.active span {
    color: #FFFFFF;
}

.end-to-endList span {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-align: center;
    color: #124061;
    ;

}

.end-to-end-section .tabContent {
    display: none;
}

.end-to-end-section .tabContent .col-55 {
    padding-left: 0;
}

.end-to-end-section .tabContent.active {
    display: flex;
    /* or grid depending on layout */
}

.end-to-endList.active {
    font-weight: bold;
    color: #d32f2f;
    /* highlight active tab */
}

.businessCards {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* .swiper-slide {
    height: auto !important;
} */

.businessKnowMore {


    padding: 10px 31px;
    border-radius: 100px;
    background-color: #F1823B;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 168%;
    letter-spacing: 6%;
    color: #ffffff;
    margin-top: 20px;
}

.hundreadsSwiper.businessSwiper {
    padding-bottom: 150px !important;
}

.hundredsSection.businessSolution {
    margin-top: 80px;
}


.uniqueRow {
    display: flex;
    gap: 40px;
    padding: 75px 0;
}

.uniqueContentData {
    max-width: 586px;
}

.uniqueContentData h4 {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;

}

.uniqueContentData p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    padding-top: 20px;

}

.uniqueSectorList {
    padding-top: 20px;
}

.SectorList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.SectorList li {
    padding: 12px 0 12px 20px;
    background-color: #ffffff;
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    position: relative;
    cursor: pointer;
    color: #124061;


}

.SectorList li.active {
    color: #F1823B;
}

.SectorList li.active::after {
    filter: brightness(1);
}

.sectorData span {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #ffffff;

}



.sectorData p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #ffffff;
    padding-top: 12px;

}

.uniqueSectorData .tab-Content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.uniqueSectorData .tab-Content {
    display: none;
}

.uniqueSectorData .tab-Content.active {
    display: flex;
}

.analystGroupImg {
    display: flex;
    gap: 40px;
}

.analystReportSection .wrapper {
    max-width: 752px;
    margin: auto;
    padding: 90px 0;
}

.analystRow {
    padding-bottom: 23px;
}

.analystRow span {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
    width: 100%;
    display: inline-block;

}


.digitalInfo {
    padding: 50px 0;
    max-width: 915px;
    margin: auto;
}

.digitalInfo span {
    font-family: 'frutiger-regular';
    font-weight: 400;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -0.96px;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: #ffffff;

}

.digitalInfo p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -0.96px;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding-top: 30px;
    color: #ffffff;

}

.digitalButton {
    display: flex;
    justify-content: center;
}

.digitalButton button {
    padding: 14px 56px;
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 19.2px;
    letter-spacing: -0.4px;
    color: #124061;
    background-color: #ffffff;
    border-radius: 100px;
    border: none;
    cursor: pointer;


}


.InputDiv {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.InputDiv input {
    width: 100%;

}

.InputDiv .selectContainer {
    width: 100%;
}

.InputDiv .countryContainer {
    width: 100%;
}

.InputDiv .countryContainer::after {
    top: 16px;
}

.coreLimsformSection.ehsSection .wrapper {
    padding-top: 83px;
}

.coreLimsformSection.ehsSection .limsMainForm {
    padding: 20px 20px;

}

.coreLimsformSection.ehsSection .limsInnerForm h2 {
    text-align: center;
    font-family: "Nunito Sans";
}

.coreLimsformSection.ehsSection .wrapper form .InputDiv input {
    padding: 18px 0px 18px 19px;

}

.coreLimsformSection.ehsSection .wrapper form input {
    font-family: "Nunito Sans";
}

.coreLimsformSection.ehsSection .wrapper form .InputDiv select {
    padding: 18px 0px 18px 19px;

}

.coreLimsformSection.ehsSection .wrapper .InputDiv .countryContainer::after {
    top: 16px;
}

.ehsCommonHeading {
    font-family: "Nunito Sans";
    color: #124061;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.4px;
    text-align: center;
    padding-bottom: 40px;
}

.strategyDesc {
    max-width: 100%;
    margin: auto;



    p {
        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #55768E;
        max-width: 100%;
        margin: auto;

        &:nth-of-type(2) {
            padding-top: 24px;
        }


    }
}

.strategyDesc .ehsCommonHeading {
    max-width: 1200px;
    margin: auto;
}

.realResultSection {
    background-color: #D9F1FC;
    padding-bottom: 40px;
}

.infoTrakIntro {
    background-image: url("https://www.labvantage.com/wp-content/themes/img/infoTrakBg.png");
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 40px;
    background-size: cover;

    .innerInfoTrak {
        padding: 37px 30px;

        h3 {
            font-family: "Nunito Sans";
            font-weight: 700;
            font-size: 40px;
            line-height: 50px;
            color: #ffffff;
            vertical-align: middle;

        }

        .infoTrakaPara {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 24px;
            padding-bottom: 40px;
            max-width: 900px;


            p {
                font-family: "Nunito Sans";
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                color: #FFFFFF;

            }
        }





    }
}


.meetingCta {
    background-color: #F1823B;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    margin-top: 40px;

    a {
        width: 100%;
        padding: 24px 0;
        font-family: "Nunito Sans";
        font-weight: 700;
        color: #ffffff;
        font-size: 24px;
        line-height: 30px;
        text-align: center;


    }
}

.infoTrakGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.infoTrakGridItem {
    border: 2.5px solid #F1823B;
    border-radius: 8px;
}

.infoTrakGridContent {
    height: 100%;
    padding: 17px 19px;
}


.infoTrakIcon {
    display: flex;
    justify-content: center;

}

.infoTrakGridPara {
    padding-top: 18px;
}



.infroTrakSpan {
    font-family: "Nunito Sans";
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    display: block;
    color: #FFFFFF;

}


.infroTrakP {
    font-family: "Nunito Sans";
    padding-top: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;

}

.Smarter {
    padding-bottom: 80px;
}

.Smarter {
    .wrapper {
        max-width: 1280px;
        /* margin: auto; */
        padding: 0 80px;
    }
}





.smarterContent {
    /* padding: 62px 0 0 0; */

    p {
        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #55768E;

        .dash {
            display: inline-block;
            width: 12px;
            height: 0;
            border: 1px solid #55768E;
            position: relative;
            bottom: 4px;

        }


    }

    ul {
        padding: 24px 0;
        padding-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;

        li {

            list-style: disc;
            font-family: "Nunito Sans";
            font-weight: 400;
            font-size: 18px;
            line-height: 24px;
            color: #55768E;


        }
    }


}

.smarterImg {
    padding-top: calc(953 / 981 * 100%);
    position: relative;

    img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

.proactive {
    background-image: url("https://www.labvantage.com/wp-content/uploads/2025/10/performanceDriven.png");
    background-repeat: no-repeat;
    background-size: cover;

    .proactiveHeading {
        h5 {
            font-family: "Nunito Sans";
            font-weight: 700;
            font-size: 40px;
            line-height: 50px;
            letter-spacing: -0.4px;
            text-align: center;
            vertical-align: middle;
            color: #ffffff;
            padding-top: 40px;

        }
    }

    .proactiveGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
        max-width: 1017px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin: auto;

        .proactiveItem {
            background-color: #006E9E;

            .proactiveContent {
                padding: 26px 18px;

                span {
                    color: #F1823B;
                    font-family: "Nunito Sans";
                    font-weight: 600;
                    font-size: 22px;
                    line-height: 24px;
                    letter-spacing: -0.4px;
                    text-align: center;
                    display: block;
                    /* 
                    &:nth-of-type(2) {
                        display: inline-block;
                        width: 12px;
                        height: 0;
                        border: 1px solid wheat;
                        position: relative;
                        bottom: 4px;
                    } */



                }

                .dash {
                    display: inline-block;
                    width: 12px;
                    height: 0;
                    border: 1px solid wheat;
                    position: relative;
                    bottom: 4px;
                }

                p {
                    font-family: "Nunito Sans";
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 24px;
                    letter-spacing: -0.4px;
                    text-align: center;
                    color: #ffffff;
                    padding-top: 18px;
                }
            }
        }
    }
}



.futureEhsContent {

    ul {
        padding-top: 24px;
        padding-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;

        li {
            list-style: disc;
            font-family: "Nunito Sans";
            font-weight: 400;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: -0.4px;
            vertical-align: middle;
            color: #55768E;

        }
    }
}

.realResults {
    padding-top: 40px;

    .ehsCommonHeading {
        display: block;
    }

    .realResultsGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;

        .realResultsItem {
            border-radius: 40px;
            background-color: #07618C;

            .realResultsContent {
                padding: 49px 61px;
                height: 100%;
                display: flex;
                justify-content: space-evenly;
                flex-direction: column;



                p {
                    font-weight: 600;
                    font-style: Italic;
                    font-size: 24px;
                    line-height: 30px;
                    letter-spacing: -0.4px;
                    text-align: center;
                    vertical-align: middle;
                    color: #F1823B;

                }

                span {
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 24px;
                    letter-spacing: -0.4px;
                    text-align: center;
                    padding-top: 27px;
                    margin: auto;
                    max-width: 325px;
                    color: #ffffff;
                    vertical-align: middle;
                    text-align: center;
                    display: block;

                }
            }
        }
    }
}


.stategyEhs {
    background-image: url("https://www.labvantage.com/wp-content/themes/img/ElevateEhs.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 4;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        z-index: -1;
    }

    .elevateEhs {
        max-width: calc(100% - 271px);
        margin: auto;
        padding: 100px 0;

        span {
            font-family: "Nunito Sans";
            font-weight: 700;
            font-style: Bold;
            font-size: 40px;
            line-height: 100%;
            color: #ffffff;
            display: block;
            text-align: center;

        }

        p {
            padding-top: 24px;
            text-align: center;
            color: #ffffff;
            max-width: 1000px;
            margin: auto;
        }

        .strategyBook {
            background-color: #124061;
            margin-top: 45px;
            border-radius: 8px;

            .strategyBookMeeting {
                padding: 24px;
                font-weight: 700;
                font-style: Bold;
                font-size: 24px;
                line-height: 30px;
                letter-spacing: -0.4px;
                text-align: center;
                vertical-align: middle;
                display: block;
                color: #ffffff;

            }
        }
    }
}



.limsMarketoForm #mktoForm_2908 {
    padding: 20px 20px 20px 20px;
    backdrop-filter: blur(60px);
    background-color: #FFFFFF99;
    border-radius: 24px;
    margin: 23px 0;
    gap: 8px !important;
    width: 100% !important;

}

.limsMarketoForm #mktoForm_2908 .mktoFieldDescriptor {
    margin-bottom: 0 !important;

}

.limsMarketoForm #mktoForm_2908 .mktoFormCol {
    float: unset !important;
    width: 100%;
    min-height: unset !important;
    margin: 0 !important;

}

.limsMarketoForm #mktoForm_2908 .mktoFieldWrap {
    float: unset !important;
    height: 100%;

}

.limsMarketoForm #mktoForm_2908 .mktoField {
    float: unset !important;

}

.limsMarketoForm .mktoFormRow {
    display: flex;
    gap: 18px;


}

.limsMarketoForm .mktoFormRow:nth-of-type(4) {
    display: flex;
    /* justify-content: space-around; */
    justify-content: start
}



.limsMarketoForm .mktoFormRow:nth-of-type(6) {

    display: block;
}

.limsMarketoForm .mktoFormRow:nth-of-type(6) .mktoRequiredField {

    display: none !important;
}

/* 
.limsMarketoForm .mktoFormRow:nth-of-type(3) {

    display: none !important;
} */

/* .limsMarketoForm .mktoFormRow:nth-of-type(6) {

    display: none !important;
} */

.limsMarketoForm .mktoFormRow:nth-of-type(7) {

    display: none !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(8) {

    display: none !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(9) {

    display: none !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(10) {

    display: none !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(11) {

    display: none !important;
}

/* .limsMarketoForm .mktoFormRow:nth-of-type(12) {

    display: none !important;
} */
.limsMarketoForm #LblMktoPersonNotes {

    display: none !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFormCol {
    padding-left: 40px !important;
    max-width: 100%;
    position: relative;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFieldWrap {
    flex-direction: row-reverse !important;

    gap: 5px !important;
    align-items: start !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFormCol .mktoHtmlText {
    width: 100% !important;
}

/* .limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFieldDescriptor {
    display: none;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFormCol::before {

   
    padding: 7px 7px;
    
   
    width: 24px;
    height: 24px;
    border: 2px solid #F1823B;
    border-radius: 4px;
    background-color: transparent;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFormCol::after {

    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid #F1823B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
} */

/* #subscriptionNewsletter {

    display: none;
} */

/* #LblsubscriptionNewsletter {
    display: none;
} */
.mktoCheckboxList {
    width: 100% !important;
    padding: 2px 0 !important;
    /* padding: 7px 7px !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #F1823B !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important; */
}

#subscriptionNewsletter {
    padding: 7px 7px !important;
    appearance: none;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #F1823B !important;
    border-radius: 4px !important;
    background-color: transparent;
    box-sizing: border-box !important;
    transition: all 0.2s ease;
    position: relative;
}

.mktoValid {
    position: relative;
}

.mktoValid::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid #F1823B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#otherJobTitle {
    border-radius: 10px !important;
}

/* #subscriptionNewsletter::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid #F1823B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
} */

.limsMarketoForm .mktoFormRow:nth-of-type(6) .mktoFieldWrap {

    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: unset;
    align-items: start;

    /* gap:26px; */
}

#LblotherIndustryType {
    font-size: 16px !important;
    font-family: "Nunito Sans" !important;
    color: #00000097 !important;
    font-weight: 900 !important;
}

#LblotherJobTitle {
    font-size: 16px !important;
    font-family: "Nunito Sans" !important;
    color: #00000097 !important;
    font-weight: 900 !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFieldDescriptor {

    width: 100% !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(14) .mktoFormCol {

    padding-left: 0 !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(15) .mktoFieldDescriptor {

    width: unset !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(15) .mktoHtmlText {

    width: 100% !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(15) .mktoFieldWrap {

    flex-direction: row;
    align-items: start;
    padding-top: 16px;
    padding-bottom: 10px;
}


.limsMarketoForm .mktoFormRow:nth-of-type(6) .mktoHtmlText {

    width: 100% !important;
}

.limsMarketoForm .mktoFormRow:nth-of-type(5) .mktoFieldDescriptor {
    width: 100%;
}



/* .limsMarketoForm .mktoFormRow:nth-of-type(5) .mktoFieldWrap {
    width: 100%;
    gap: 0;
} */

.limsMarketoForm .mktoFormRow:nth-of-type(5) .mktoFieldWrap {
    float: unset !important;
    /* padding-left: 36px; */
}

.limsMarketoForm .mktoFormRow:nth-of-type(4) .mktoFormCol {
    float: unset !important;
}

.limsMarketoForm .mktoGutter {
    display: none !important;

}

.limsMarketoForm .mktoOffset {
    display: none !important;
}

.limsMarketoForm .mktoClear {
    display: none !important;
}


.mktoHtmlText span {
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: "Nunito Sans" !important;
    color: #00000097 !important;
}

.limsMarketoForm #MktoPersonNotes {
    width: 100% !important;
    /* max-width: 532px; */
    border-radius: 8px;
    padding: 20px 0 3px 19px;
    display: flex;
    /* align-items: center; */
    height: 100%;
    /* margin: auto; */
    width: 100% !important;
}

.limsMarketoForm #MktoPersonNotes::placeholder {
    color: gray !important;
    font-size: 16px !important;
}

.limsMarketoForm .mktoFieldWrap {
    display: flex;
    flex-direction: column;
    gap: 10px;


    label {
        display: flex;
        flex-direction: row-reverse;
        justify-content: start;
        align-items: center;
        width: 100% !important;

    }

    label span {
        font-size: 16px !important;
        font-family: "Nunito Sans" !important;
        color: #00000097 !important;
    }


    input {
        padding: 10px 0px 10px 19px !important;
        /* width: 100% !important; */
        width: 100% !important;
    }

    input::placeholder {
        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        vertical-align: middle;
        color: gray !important;
    }

   

    select::placeholder {

        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        vertical-align: middle;

    }

    #MktoPersonNotes::placeholder {

        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        vertical-align: middle;
        color: #124061;
    }

    /* select::before {
        content: '';
        position: absolute;
        top: 16px;
        top: 20px;
        right: 20px;
        background-image: url("https://pt.labvantage.com/wp-content/themes/img/downarrow.svg");
        background-repeat: no-repeat;
        height: 24px;
        width: 24px;
    } */
}




.limsMarketoForm .mktoFormRow:nth-of-type(2) .mktoFieldDescriptor:nth-of-type(1) {
    position: relative;

}

.limsMarketoForm .mktoFormRow:nth-of-type(2) .mktoFieldDescriptor:nth-of-type(1) {
    position: relative;

}

/* .limsMarketoForm .mktoFormRow:nth-of-type(2) .mktoFieldDescriptor:nth-of-type(1)::before {
    content: '';
    position: absolute;
    top: 16px;
    top: 42px;
    right: 20px;
    background-image: url("https://pt.labvantage.com/wp-content/themes/img/downarrow.svg");
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
    z-index: 999;

} */

/* .limsMarketoForm .mktoFormRow:nth-of-type(5) .mktoFieldDescriptor {
    position: relative;

}

.limsMarketoForm .mktoFormRow:nth-of-type(5) .mktoFieldDescriptor::before {

    content: '';
    position: absolute;
    top: 16px;
    top: 38px;
    right: 20px;
    z-index: 999;
    background-image: url("https://pt.labvantage.com/wp-content/themes/img/downarrow.svg");
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
} */


.limsMarketoForm .mktoButtonWrap {
    margin-left: 0 !important;
}

.limsMarketoForm .checkboxTrigger span {
    color: #124061 !important;
    font-family: "Nunito Sans" !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 22px !important;
}

.limsMarketoForm .mktoButtonWrap button {
    background-color: #F1823B !important;
    padding: 14px 28px !important;
    color: #ffffff !important;
    background-image: none !important;
    border-radius: 100px !important;
}


.coreLimsformSection.ehsSection .formData p {
    line-height: 35px;
    letter-spacing: -0.24px;
}




/* limsForm */
.limsMainForm #mktoForm_2964 {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;


}

.limsMainForm #mktoForm_2964 .mktoFormRow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.limsMainForm #mktoForm_2964 .mktoButtonRow .mktoButtonWrap {
    margin: 0 !important;
}

.limsMainForm #mktoForm_2964 .mktoButtonRow .mktoButtonWrap button {
    background-color: #F1823B !important;
    padding: 14px 28px !important;
    color: #ffffff !important;
    background-image: none !important;
    border-radius: 100px !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(13) {
    flex-direction: row;
    margin-top: 10px;

}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(13) .mktoFieldWrap {
    display: flex;
    flex-direction: row !important;
    gap: 5px;



    .mktoHtmlText {
        width: 100% !important;

        span {
            color: #124061 !important;
            font-family: "Nunito Sans" !important;
            font-weight: 400 !important;
            font-size: 14px !important;
            line-height: 22px !important;
        }
    }

}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoCheckboxList {
    float: unset !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow #subscriptionNewsletter {
    width: 0 !important;
    padding: 7px 10px !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow #LblMktoPersonNotes {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow #MktoPersonNotes {
    width: 100% !important;
    padding: 20px 10px !important;
    border-radius: 10px;
    /* height: 100%; */
    height: 60px;

    &::placeholder {
        font-family: "Nunito Sans";
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        vertical-align: middle;
        color: gray !important;
    }
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(3) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(5) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(6) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(7) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(8) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(9) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow:nth-of-type(10) {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoGutter {
    display: none !important;
}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoClear {
    display: none;
}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoOffset {
    display: none;
}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoFieldWrap {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    gap: 16px;

    input {
        width: 100% !important;
        padding: 15px 10px;
    }

    label {
        width: 100% !important;
        display: flex;
        flex-direction: row-reverse;
        justify-content: start;
        padding: 0;


        span {
            font-size: 16px !important;
            font-family: "Nunito Sans" !important;
            color: #00000097 !important;
            font-weight: bold;

            strong {
                padding: 0 !important;
            }
        }


    }

    select {
        width: 100% !important;
        padding: 15px 10px;
        line-height: 20px !important;
        appearance: none;
        /*background-image: url("https://pt.labvantage.com/wp-content/themes/img/downarrow.svg");*/
        background-repeat: no-repeat;
        background-position: right 20px center;
    }
}

.limsMainForm #mktoForm_2964 .mktoFormRow .mktoFormCol {
    float: unset;
    position: static;
    min-height: unset;
    margin-bottom: 0 !important;
}





.bioTechBannerSection {
    background-image: url("https://www.labvantage.com/wp-content/uploads/2025/10/bioTechNewBanner.png");
    background-repeat: no-repeat;
    min-height: 750px;
    background-position: center center;
    background-size: cover;
    position: relative;

}

.bioTechBannerContent {
    max-width: 800px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 89px;
}

.bioTechBannerContent h1 {
    font-weight: 500;
    color: #ffffff;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: -0.72px;
    text-transform: unset;


}

.bioTechBannerContent span {
    font-weight: 300;
    padding: 16px 0;
    display: block;
    font-style: Italic;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: -0.24px;
    color: #FFFFFF;



}

.bioTechBannerContent p {

    font-weight: 300;
    font-style: Light;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: -0.24px;
    color: #ffffff;
    text-align: start;




}

.bioTechHeading h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #124061;
    text-align: center;

}

.bioTechGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.biogridGridItem {
    border-radius: 16px;
    background-color: #006E9E;
    box-shadow: 0px 32px 32px 0px #00000014;

}

.biogridGridItem .bioGridData {
    padding: 35px 20px;
    height: 100%;
}

.bioTechFaq.comPad80 {
    padding: 0 0 50px 0;
}

.bioGridData img {
    height: 48px;
    width: 48px;
    margin: 0;
}

.bioGridData span {
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 140%;
    padding-top: 20px;
    padding-bottom: 8px;
    display: block;
    color: #ffffff;
}

.bioGridData p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    text-align: start;
}

.realResultSection.bio360Modular {
    .realResults {
        .realResultsGrid {
            .realResultsItem {
                .realResultsContent {
                    p {
                        color: #ffffff;
                        font-weight: 600;
                        font-style: Italic;
                        font-size: 24px;
                        line-height: 30px;
                        letter-spacing: -0.4px;
                        text-align: center;
                    }
                }
            }
        }
    }
}


.scientificHeading {
    text-align: center;
    max-width: 820px;
    margin: auto;
}

.scientificHeading span {
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    color: #124061;


}

.scientificHeading p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #55768E;
    padding-top: 20px;
    max-width: 624px;
    margin: auto;

}

.scentificGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    padding-top: 30px;
    max-width: 900px;
    margin: auto;

}

.scientificImg {

    position: relative;
    z-index: 1;
    padding-top: calc(520 / 464 * 100%);

}

.scientificSection.comPad80 {
    padding: 40px 0;
}

.scientificImg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 4;
    pointer-events: none;
}

.scientificImgContent {
    position: absolute;
    max-width: 379px;
    top: 23px;
    left: 26px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* justify-content: space-between; */
    height: 100%;
}


.scientificImgContent.scientificImgContent2 {

    top: 27px;

}

.scientificImgContent p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #FFFFFF;
    text-align: start;

}

.scientificImgContent p span {
    font-weight: 700;
    font-style: Bold;
    /* font-size: 80px; */
    line-height: 60px;
    letter-spacing: -0.96px;
    color: #F1823B;



}

.scientificImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.scienticCardFlex {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.scientificInnerContent:nth-of-type(1) p span {
    font-size: 80px;
}

.scientificInnerContent:nth-of-type(2) p span {
    font-size: 20px;
}

.scientificCard {
    height: 100%;
    background: #006E9E;
    border: 1px solid #F1823B;
    border-radius: 8px;
}

.scientificCard p {
    padding: 15px 15px 15px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #ffffff;
    text-align: start;
    height: 100%;

}

.scientificCard p span {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #F1823B;

}


.activateHeading {
    max-width: 615px;
    margin: auto;
}

.activateHeading h3 {
    font-weight: 700;
    margin: 0;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    vertical-align: middle;
    color: #124061;
    font-family: "Nunito Sans";

}

.activateGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1027px;
    margin: auto;
    padding-top: 40px;
}

.activateImg {
    position: relative;
    padding-top: calc(1030 / 1116 * 100%);

}

.activateImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}

.activateList {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    height: 100%;
}

.activateList li {
    display: flex;
    gap: 24px;
    align-items: center;
}

.activateList li img {
    margin: 0;
}

.firmsHeading {
    max-width: 837px;
    margin: auto;
}

.firmsHeading h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #124061;
    font-family: "Nunito Sans";


}

.firmsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;

}

.firmsGridItem {
    border-radius: 20px;
    background-color: #006E9E;
    box-shadow: 0px 4px 35px 0px #00000024;
    border: 1px solid #F1823B;

}

.firmContent {
    padding: 20px;
}

.firmContent p {
    padding-top: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #ffffff;
    text-align: start;
    margin-bottom: 0;

}

.firmImg img {
    margin: 0;
}

.transformContent {
    max-width: 915px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 54px 0 40px 0px;
}

.transformSection {
    background-image: url("https://www.labvantage.com/wp-content/uploads/2025/10/TransformBg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.transformContent p {
    font-weight: 400;

    font-size: 35px;
    line-height: 40px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}

.transformContent h5 {
    font-weight: 700;

    font-size: 35px;
    line-height: 40px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #ffffff;
}

.transformContentBtn {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-bottom: 54px;
}

.transformContentBtn a {
    padding: 14px 33px;
    background-color: white;
    border-radius: 100px;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 19.2px;
    letter-spacing: -0.4px;
    vertical-align: middle;
    color: #124061;

}

.transformContentBtn a:hover {
    background-color: #124061;
    color: #ffffff;

}

.bioTechFaqHeading {
    max-width: 837px;
    margin: auto;
}

.bioTechFaqHeading span {
    font-weight: 700;
    color: #124061;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    vertical-align: middle;
    display: block;

}

.bioTechFaqHeading p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #55768E;
    vertical-align: middle;
    padding-top: 20px;
    margin-bottom: 0;


}

.faqGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    padding-top: 40px;
    align-items: start;
}

.faqItemImg {
    position: relative;
    padding-top: calc(812 / 1070 * 100%);

}

.faqItemImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}

.faqItemContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 35px;
}

.faqInnerContent span {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #124061;
    display: block;
    position: relative;
    cursor: pointer;
}

.faqInnerContent span::after {
    content: '';
    background-image: url("https://pt.labvantage.com/wp-content/uploads/2025/10/plusSignFaq.svg");
    background-repeat: no-repeat;
    height: 28px;
    width: 28px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: background-image 0.3s ease;
}

.faqInnerContent.active span::after {
    background-image: url("https://pt.labvantage.com/wp-content/uploads/2025/10/MinusSignFaq.svg");
}

.faqInnerContent.active span {
    color: #F1823B;
}

.faqInnerContent p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    color: #55768E;
    text-align: start;
    padding-top: 20px;
    padding-top: 20px;
    max-width: 480px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 0;
    margin: 0;
    transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.faqInnerContent.active p {
    opacity: 1;
    height: auto;
    padding-bottom: 20px;
}

/* Apps & Modules Section */
.appsModulesSection {
    background-color: #ffffff;
}

.appsModulesHeading {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.appsModulesHeading h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #124061;
    margin-bottom: 20px;
}

.appsModulesHeading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #55768E;
}


.appsAndModulesHeading {
    max-width: 837px;
    margin: auto;
    /* padding-bottom: 40px; */
}


.activatesSection {
    padding-top: 40px;
}

.appsAndModulesHeading span {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
    text-align: center;
    color: #124061;

    display: block;
}

.appsAndModulesHeading p {
    font-weight: 400;
    font-size: 20px;
    color: #55768E;
    line-height: 30px;
    letter-spacing: -0.96px;
    text-align: center;
    padding-top: 20px;
}

.appTabListing {
    border: 1px solid #AEAEAE66;
    box-shadow: 0px 4px 28px 0px #0000004D;
    border: 1px solid #AEAEAE66;
}

.tab-nav {
    box-shadow: 0px 4px 28px 0px #0000004d;
    border: 1px solid #aeaeae66;
    margin: 0px auto 40px 0;
    padding: 16px 10px;
    overflow: hidden;
    border-radius: 4px;
}

.tab-nav .swiper-wrapper {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding: 10px 10px;
}

.tab-nav .swiper-slide {
    width: auto;
    max-width: max-content;
    margin: auto;
    /* Each button auto-width */
    flex-shrink: 0;
}

.tab-nav button {
    background: none;
    text-transform: none;
    border: none;
    padding: 16px 13px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.96px;
    color: #124061;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
    font-weight: 400;
}

.tab-nav button.active {
    background: #006699;
    color: #f1823b;
    font-weight: 700;
}




.tab-nav-controls {
    display: none;
}

.tab-nav-controls .tab-prev,
.tab-nav-controls .tab-next {
    position: absolute;
    top: 50%;
    left: calc(50% + 10px);
    transform: translateY(-50%);
    z-index: 10;
    background: #006699;
    color: #fff;
    font-size: 22px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.tab-prev.swiper-button-disabled {
    background: gray;
}

.tab-next.swiper-button-disabled {
    background: gray;
}

.tab-nav-controls .tab-prev {
    left: calc(50% - (37px + 10px));
}

.tab-nav-controls .tab-next {
    right: 8px;
}







.appGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-top: 40px;
}

.appGridTabSwitch {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appGridTab {
    padding: 15px;
    background-color: #006E9E;
    color: #FFFFFF4D;
    display: block;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: start;
    position: relative;
    cursor: pointer;


}

.appGridTab:hover {
    color: #ffffff;
}

.appGridTab:hover::after {
    background-image: url("https://pt.labvantage.com/wp-content/uploads/2025/10/TabArrow.svg");
}

.appGridTab::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 0;
    background-image: url("https://pt.labvantage.com/wp-content/uploads/2025/10/grayTabArrow.svg");
    background-repeat: no-repeat;
    width: 28px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);



}

.appContent span {
    display: block;
}

.appContent span {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    color: #124061;
    line-height: 30px;
    letter-spacing: -0.96px;



}

.appContent p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #55768E;
    text-align: start;
    padding-top: 18px;
    margin-bottom: 0;

}

.appContent {
    display: none;
}

.appContent.active {
    display: block;
}

.appGridTab.active {

    color: #ffffff;
}


/* Step indicator circles */
.howItWorksGridItem::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ccc;
    /* default gray */
    z-index: 2;
}

/* Active step */
.howItWorksGridItem.active::before {
    background-color: #f37021;
}

.howItWorks {
    position: relative;
    padding: 80px 0;
}

.howItWorksHeading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.howItWorksHeading span {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #124061;
}

/* Central vertical line */
.howItWorks::before {
    content: "";
    position: absolute;
    top: 14%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #ccc,
            #ccc 6px,
            transparent 6px,
            transparent 12px);
}

/* Layout grid */
.howItWorksGrid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
}

.howItWorksGridItem {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

/* Alternate rows */
.howItWorksGridItem:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image */
.howItWorksImg {
    flex: 0 0 45%;
}

.howItWorksImg img {
    width: 100%;
    border-radius: 10px;
}

/* Content */
.howItWorksContent {
    flex: 0 0 45%;
    display: flex;
    gap: 15px;
    position: relative;
}




/* Adjust for right side items */
.howItWorksGridItem:nth-child(even) .howItWorksContent .stepNumber {
    left: auto;
    right: -60px;
}

.howItWorksContent .contentBox {
    background: transparent;
    position: relative;
}

/* .howItWorksContent .contentBox::before {
    content: "1";
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 90px;
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 90px;
    letter-spacing: -0.96px;
   color: #F1823B;

} */



.howItWorksContent span {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #124061;
}

.howItWorksContent p {
    color: #55768e;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin: 12px 0;
    text-align: start;
}

.howItWorksContent ul {
    padding-left: 30px;
    color: #55768e;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.howItWorksContent ul li {
    list-style: disc;
}

.contentNo span {
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 90px;
    letter-spacing: -0.96px;
    text-align: center;
    vertical-align: middle;
    color: #F1823B;

}

.proactive.bioTechDelivers .proactiveGrid {
    max-width: 1146px;
}

.videoEmbedded {
    position: relative;

    /* margin: 40px auto; */
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
}

.videoBanner {
    position: relative;
    cursor: pointer;
    display: block;
    max-width: 900px;
    margin: auto;
}



.videoBanner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}


.playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.videoBanner:hover .playIcon {
    transform: translate(-50%, -50%) scale(1.1);
}

.elementor-heading-title {
    font-family: "Nunito Sans" !important;
}

.carousel__button.is-close {
    padding: 0 !important;
    border: unset !important;
    border-width: unset !important;
    background-color: unset !important;
}

.elementor-701 .elementor-element.elementor-element-a6cc520 {
    display: none !important;
}

/* .e-con-inner{
    display: none !important;
} */
/* Responsive */
/* @media only screen and (max-width:1024px) {
    .wrapper {
        max-width: calc(100% - 120px);
    }

    .menu-flex {
        gap: 20px;
    }

    .main-nav>ul {
        gap: 15px;
    }

    .logo {
        width: 130px;
    }
} */

/*  */
@media only screen and (min-width: 992px) and (max-width: 1208px) {
    .logo {
        width: 135px;
    }

    .main-nav>ul li a {
        font-size: 16px;
    }

    .wrapper {
        max-width: calc(100% - 60px);
    }

    .banner-content .heading {
        font-size: 40px;
        line-height: 50px;
    }

    .banner-content {
        left: 30px;
    }
}


@media only screen and (max-width:991px) {

    .coreLimsformSection.ehsSection {
        padding-top: 0;

        .wrapper {
            padding-top: 24px;

            .col-50 {
                padding: 0;

                form {
                    input {
                        font-size: 16px;
                        padding: 26px 0 26px 14px;
                    }

                    select {
                        font-size: 16px;
                    }
                }
            }
        }

        .InputDiv {
            flex-direction: column;

        }

        .limsMainForm {
            padding: 20px 30px;

            .limsInnerForm {
                h2 {
                    font-size: 22px;
                }
            }
        }

    }

    /* #uc_ue_scroll_to_top_elementor_a11d97e {
        display: flex !important;
        z-index: 0;
        justify-content: flex-end !important
    } */

    .scientificInnerContent:nth-of-type(1) p span {
        font-size: 50px;
    }

    .videoBanner img {
        width: 100%;
    }

    .infoTrak.comPad60 {
        padding: 0;
    }

    .ehsCommonHeading {
        font-size: 26px;
        line-height: 36px;
        padding-bottom: 24px;
    }

    .strategyDesc {
        max-width: calc(100% - 16px);
        margin: auto;

        p {
            text-align: center;
        }
    }

    .infoTrak.comPad80 {
        padding: 0px 0;
    }

    .infoTrakIntro {

        background-image: none;

        & .innerInfoTrak {
            padding: 40px 13px;

            h3 {

                color: #124061;
                text-align: center;
            }

            .infoTrakaPara {
                p {
                    color: #124061;
                    text-align: center;
                }
            }
        }
    }

    .infoTrakGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
    }

    .col-70 {
        width: 100%;
    }

    .col-30 {
        width: 100%;
    }

    .Smarter {
        .wrapper {
            max-width: calc(100% - 40px);
            /* margin: auto; */
            padding: 0;
        }
    }


    .infoTrakGridItem {
        background-color: #08608C;
    }

    .infoTrakGridContent {
        padding: 55px 14px;
    }


    .meetingCta {
        max-width: 295px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 24px;
    }


    .Smarter {
        padding-bottom: 40px;

        .row {
            flex-direction: column-reverse;

        }

    }



    .col-60 {
        width: 100%;
    }

    .col-40 {
        width: 100%;
    }

    .futureEhs.comPad60 {
        padding: 40px 0;
    }

    .futureEhsContent {
        p {
            text-align: center;
        }
    }

    .futureHeading .ehsCommonHeading {
        font-size: 40px;
        line-height: 50px;
    }

    .realResults .ehsCommonHeading {
        font-size: 24px;
        line-height: 34px;
    }

    .smarterContent {
        padding: 14px 0;

        p {
            color: #124061;
            text-align: center;
        }

        ul {
            li {
                color: #124061;
            }
        }
    }

    .proactive {
        background-position: center center;

        .proactiveParent {
            padding: 0 16px;

            .proactiveGrid {

                grid-template-columns: repeat(1, 1fr);
                gap: 20px;
                padding-top: 21px;

                .proactiveItem {
                    .proactiveContent {
                        padding: 37px 27px;
                    }
                }


            }
        }

        .proactiveHeading {
            h5 {
                font-size: 34px;
                line-height: 40px;
                padding-top: 33px;
            }
        }

    }

    .futureEhs.comPad80 {
        padding: 40px 0;
    }


    .realResults {
        padding-top: 40px;

        .realResultsGrid {

            grid-template-columns: repeat(1, 1fr);
            gap: 20px;

            .realResultsItem {
                border-radius: 0;

                .realResultsContent {
                    padding: 60px 10px;

                    p {
                        font-size: 18px !important;
                    }

                    span {
                        font-size: 14px;
                    }
                }
            }
        }
    }

    .stategyEhs {

        &::before {
            background-color: rgba(0, 0, 0, 0.2);

        }

        .elevateEhs {
            max-width: calc(100% - 64px);
            padding: 55px 0;

            span {
                line-height: 50px;
            }

            p {
                line-height: 30px;
            }
        }
    }

    .legacyGrid>.legacyCard:nth-of-type(odd) {
        background-color: #D9F1FD;
    }

    .legacyGrid>.legacyCard:nth-of-type(even) {
        background-color: #ffffff;
    }

    .legacyGrid>.legacyCard:nth-of-type(odd) .legacylogo img {
        filter: brightness(1);
    }

    .hamber-icon {
        display: flex;
    }

    .testimonialData p::before {

        box-shadow: unset;
        z-index: 2;
    }

    .popup-container .popup-content {
        padding: 30px 20px;
    }

    .heading-popup-box .image {
        width: unset;
        height: unset;
    }

    .heading-popup-box .heading {
        font-size: 20px;
    }

    .heading-popup-box .image img {
        width: 50px;
        height: 50px;
    }

    .main-nav>ul {
        gap: 10px;
    }

    .book-btn {
        padding: 6px 12px;
        padding-right: 30px;
    }

    .footer-logo {
        height: 30px;
    }


    .site-header {
        padding: 15px 0;
    }

    /* body {
        padding-top: 72px;
    } */

    .wrapper {
        max-width: 100%;
        padding: 0 16px;
    }

    .com-pad {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .menu-flex {
        gap: 0;
        justify-content: space-between;
    }

    .center-nav {
        display: none;
    }

    .right-side .main-nav li:first-child {
        display: none;
    }

    .col-50,
    .col-33 {
        width: 100%;
    }

    .logo {
        width: 120px;
    }

    .banner-content .heading {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 16px;
    }

    .common-heading-box .heading {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 20px;
    }

    .about-certification .desc p {
        font-size: 18px;
        line-height: 28px;
    }

    .btn-margin {
        margin-top: 24px;
    }

    .btn-default {
        padding: 8px 16px;
    }

    .certification-path-box .content .heading {
        font-size: 22px;
        line-height: 32px;
    }

    .certification-card .inner-card-box .content ul li {
        font-size: 18px;
        line-height: 28px;
    }

    .certification-card .inner-card-box {
        padding: 24px;
    }

    .certification-level-sec .col-33:not(:last-child),
    .certification-path-sec .col-50:not(:last-child) {
        margin-bottom: 30px;
    }

    .certification-path-box .content .tick-list li {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-sec {
        padding: 0;
    }

    .faq-sec .accordian-item .accord-hedaer {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-sec .accordian-item {
        padding: 18px 24px;
    }

    .certification-path-box .image {
        padding-top: calc(500 / 768 * 100%);
    }

    .common-banner-sec .image {
        padding-top: calc(500/768*100%);
    }

    .common-banner-sec .limeStrategyImg {
        position: relative;
        padding-top: calc(600 / 390 * 100%);
    }

    .banner-content {
        max-width: calc(100% - 32px);
        left: 16px;
    }

    .banner-content .text {
        font-size: 22px;
        line-height: 26px;
    }



    .footer-top,
    .footer-bottom {
        width: 100%;
    }

    .footer-top {
        margin-bottom: 30px;
        gap: 30px;
    }



    .mb-40 {
        margin-bottom: 20px;
    }

    .main-nav>ul li a {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-links {
        gap: 9px 0;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .footer-links a {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .site-footer {
        padding: 20px 0;
    }

    .sub-menu {
        width: 100%;
    }


    .productImage {
        padding-top: calc(500 / 400 * 100%);
    }

    .fullySolutionSection {
        margin-top: 40px;
    }

    .fullysolutionContent h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .fullSolutionImg {
        margin-top: 20px;
    }

    .labadvnatgeIot {
        padding: 40px 0;
    }

    .labadvnatgeIot h3 {
        font-size: 26px;
        line-height: 40px;
    }

    .iotContent {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px 0px 0px 0px;
    }

    .iotContent li img {
        margin: 0;
    }

    .iotList {
        max-width: 580px;
        margin: auto;
    }

    .mobileDescision {
        padding: 40px 0;
    }

    .mobileDescision h4 {
        font-size: 26px;
    }

    .decisionGrid ul {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .decisionGrid ul li {
        font-size: 18px;
    }

    .standOutGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .standOutSection {
        margin: 40px 0;
    }

    .standoutIot p {
        margin: 0;
    }

    .standoutIot h5 {
        font-size: 26px;
        line-height: 35px;
    }

    .globalLabsCards {
        grid-template-columns: repeat(1, 1fr);
    }

    .globalLabsContent h6 {
        font-size: 26px;
        line-height: 30px;
    }

    .bookDemoCard .col-60 {
        width: 100%;
    }

    .bookDemoCard .col-40 {
        width: 100%;
    }

    .bookDemoCard {
        flex-direction: column-reverse;
    }

    .bookdemoCardContent p {
        font-size: 18px;
        line-height: 30px;
    }

    .bookdemoCardContent {
        padding: 0px 0 40px 20px;
    }

    .customerHeading h2 {
        font-size: 34px;
    }

    .legacyHeading h3 {
        font-size: 34px;
        line-height: 40px;
    }

    .legacyHeading p {
        font-size: 18px;
        line-height: 24px;
    }

    .legacyGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .legacycontent span {
        font-size: 18px;
        line-height: 140%;
    }

    .legacycontent p {
        font-size: 16px;
        line-height: 140%;
    }

    .legacydemoCardContent p {
        max-width: 700px;
    }

    .bookDemoSection {
        margin: 40px 0;
    }

    .switchingSection .wrapper {
        flex-direction: column-reverse;
    }

    .switchingContent p {
        font-size: 34px;
    }

    .switchingImg {
        padding-top: calc(341 / 348 * 100%);
    }

    .switchingImg img {
        border-radius: 16px;
    }

    .limsPartnerHeading h4 {
        font-size: 34px;
        line-height: 40px;
    }

    .switchingSection {
        margin-bottom: 74px;
    }

    .limsPartnerListing ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .limsPartnerListing ul li {
        font-size: 16px;
        line-height: 20px;
    }

    .hunderedHeading p {
        font-size: 32px;
        line-height: 40px;
        text-align: start;
    }

    .hundreadContent p {
        font-size: 16px;
        line-height: 20px;
    }

    .hundreadContent {
        gap: 8px;

    }

    .hundreadsSwiper {
        padding-bottom: 85px !important;
    }

    .limsForm {
        padding: 40px 10px 33px 16px;
    }

    .limsformheading p {
        font-size: 32px;
    }

    .limsForm .form-group {
        flex-direction: column;
    }

    .limsFormSection {
        margin-bottom: 40px;
    }

    .worldwideHeading p {
        font-size: 34px;
        line-height: 40px;
    }

    .worldWideRow .col-40 {
        width: 100%;
    }

    .worldWideRow .col-60 {
        width: 100%;
    }

    .testimonialSwiper .swiper-button-next svg {
        transform: rotate(0);
    }

    .testimonialSwiper .swiper-button-prev svg {
        transform: rotate(0);
    }

    .worldWideRow {
        flex-direction: column;
        gap: 20px;
    }

    .worldwideHeading {
        max-width: 100%;
        margin: 0;
    }

    .worldwideHeading p {
        text-align: center;
    }

    .customerLogo {
        margin-bottom: 40px;
    }

    .testimonialSwiper {
        padding-left: 0px !important;
        height: auto !important;
    }

    .DesktopLogo {
        display: none;
    }

    .MobileLogo {
        display: block;
    }

    .testimonialSwiper .swiper-button-next {
        left: calc(50% + 10px);
        bottom: 0;
        top: inherit;
        width: 80px;
        height: 45px;

    }

    .testimonialData {
        padding-bottom: 80px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: calc(50% - 85px);
        bottom: 0px;
        top: inherit;
        width: 80px;
        height: 45px;
    }

    .WorldWideSection {
        margin-bottom: 50px;
    }

    .limsPartnerSection {
        margin-bottom: 50px;
    }

    .coreLimsformSection .col-55 {
        width: 100%;
        padding: 0;
    }

    .coreLimsformSection .col-45 {
        width: 100%;
        padding: 0;
    }

    .coreLimsformSection .wrapper form input,
    .coreLimsformSection .wrapper form select {
        border: 1px solid #A3A3A3
    }

    .limsMainForm {
        border: 1px solid #A3A3A3;
        padding: 10px 20px;
    }

    .BookDemoCta {
        color: white;
        background-color: #124061;
    }

    .coreLimsformSection .wrapper {
        flex-direction: column;
        padding-top: 0;
        gap: 20px;
    }

    .formCourses span {
        font-size: 24px;
    }

    .formData h1 {
        font-size: 34px;
        line-height: 45px;
    }

    .formData p {
        font-size: 22px;
        line-height: 30px;
        font-family: 'frutiger-light';
    }

    .coreLimsformSection.ehsSection .formData p {
        max-width: 321px;
    }

    .limsInnerForm h2 {
        line-height: 140%;
    }

    .formCourses {
        display: flex;
        flex-wrap: wrap;
        /* gap: 28px; */
        column-gap: 18px;
    }

    .formCourses span {
        padding: 0;
    }

    .formCourses span::after {
        right: -10px;
        top: 4px;
        border: 1.3px solid #ffffff;
        height: 68%;
    }

    .end-to-end-section .tabContent.active {
        flex-direction: column;
    }

    .end-to-end-section .tabContent .col-55 {
        width: 100%;
    }

    .end-to-end-section .tabContent .col-45 {
        width: 100%;
        padding-left: 0;
    }

    .end-to-endContent span {
        font-size: 22px;
        line-height: 30px;
    }

    .endtoendImg {
        margin-top: 20px;
    }

    .end-to-end-grid {


        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        margin-bottom: 20px;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
    }

    .end-to-endList {
        padding: 10px 15px;
    }

    .businessSolution .hunderedHeading {
        margin-bottom: 0px;
    }

    .uniqueRow {
        flex-direction: column;
    }

    .analystReportSection .wrapper {
        max-width: calc(100% - 100px);
        padding: 28px 0;

    }

    .analystGroupImg {
        flex-direction: column;
    }

    .analystRow span {
        font-size: 24px;
    }

    .digitalInfo span {
        font-size: 24px;
        text-align: start;
        line-height: 30px;
    }

    .digitalInfo p {
        font-size: 24px;
        line-height: 30px;
        text-align: start;
    }

    .digitalTransformSection {
        margin: 40px 0;
    }

    .digitalInfo {
        padding: 46px 0 20px 0;
    }

    .digitalButton {
        justify-content: start;
    }



    .limsMarketoForm #mktoForm_2908 .mktoFormRow {
        flex-direction: column !important;
    }

    .limsMarketoForm #mktoForm_2908 .mktoFormRow:nth-of-type(14) {
        flex-direction: row !important;
        gap: 10px;
    }


    .limsMarketoForm #mktoForm_2908 .mktoFormRow input {
        padding: 26px 0 26px 14px !important;
        border-radius: 10px !important;
    }

    .limsMarketoForm #mktoForm_2908 .mktoFormRow:nth-of-type(14) input {
        padding: 7px 7px !important;
    }

    .checkboxTrigger a {
        padding: 0 !important;
    }

    .limsMarketoForm #MktoPersonNotes {
        padding: 18px 0px 10px 18px;
    }

    .limsMarketoForm #mktoForm_2908 .mktoFormRow:nth-of-type(15) {

        flex-direction: row !important;
        gap: 10px;
    }

    .limsMarketoForm #mktoForm_2908 .mktoFormRow:nth-of-type(15) input {

        padding: 10px 0 10px 14px !important;
        border-radius: 2px !important;
    }

    .limsMarketoForm .mktoFormRow:nth-of-type(15) .mktoFieldWrap {
        gap: 0;
    }


    .limsMainForm #mktoForm_2964 .mktoFormRow .mktoFieldWrap input {
        padding: 25px 10px;
    }


    .bioTech360Section.comPad80 {
        padding: 40px 0;
    }

    .bioTechHeading h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 0;
    }

    .activatesSection {
        padding-top: 0;
    }

    .bioTechGrid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
        gap: 20px;
    }

    .bioGridData span {
        font-size: 24px;
    }

    .tab-nav .swiper-slide {
        max-width: unset;
        text-align: start;

    }





    .appGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .appGridTab {
        font-size: 22px;
        line-height: 28px;
    }

    .appGridTabSwitch {
        gap: 20px;
    }

    .appsAndModulesHeading span {
        font-size: 24px;
        line-height: 34px;
    }

    .appsAndModulesHeading p {
        padding-top: 10px;
    }


    .howItWorks::before {
        left: 20px;
        transform: none;
    }

    .howItWorksGridItem {
        flex-direction: column !important;
        gap: 30px;
    }

    .howItWorksContent .stepNumber {
        left: 0;
        right: auto;
        top: -30px;
    }

    .howItWorksGridItem::before {
        content: unset;
    }

    .howItWorks::before {
        content: unset;
    }

    .howItWorksGrid {
        gap: 40px;
    }

    .howItWorksHeading {
        margin: 0 auto 20px;
    }

    .howItWorks {
        padding: 40px 0;
    }

    .howItWorksHeading span {
        font-size: 24px;
        line-height: 34px;
    }

    .faqGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .contentNo span {
        font-size: 50px;
        line-height: 40px;

    }

    .bioTechFaq.comPad80 {
        padding: 0px 0 40px 0;
    }

    .bioTechFaqHeading span {
        font-size: 24px;
        line-height: 34px;
    }

    .scientificSection.comPad80 {
        padding: 40px 0;
    }

    .scientificHeading span {
        font-size: 24px;
        line-height: 34px;
    }

    .scentificGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .scientificCard p {
        padding: 15px;
    }

    .activateGrid {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 20px;
        gap: 30px;
    }

    .activateHeading {
        max-width: 100%;

    }

    .activateHeading h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .firmsGrid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    .firmsHeading h4 {
        font-size: 24px;
        line-height: 34px;
    }

    .firmsSection.comPad80 {
        padding: 40px 0;
    }

    .transformContent h5,
    p {
        font-size: 24px;
        line-height: 34px;
        margin: 0;
    }

    .transformContentBtn a {
        padding: 10px 20px;
    }

    .bioTechBannerSection {
        background-image: url("https://www.labvantage.com/wp-content/uploads/2025/10/Main-Banner-2.webp");
    }

    .bioTechBannerContent h1 {
        font-size: 24px;
        line-height: 34px;
    }

    .bioTechBannerContent span {
        font-size: 18px;
    }

    .bioTechBannerContent p {
        font-size: 18px;
    }

    .bioTechBannerContent {
        left: 20px;
        max-width: 600px;
    }

    .transformContent p {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 0;
    }

    .transformContent {
        gap: 20px;
    }

    .scientificImgContent {
        left: 10px;
        gap: 0px;
    }

    .scientificImgContent p span {
        font-size: 40px;
    }

    .faqItemContent {
        padding-top: 0;
    }

    .scientificImgContent p {
        font-size: 18px;
    }


    .tab-nav-controls {
        display: block;
        position: relative;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .tab-nav {
        position: relative;
    }

    .tab-nav .swiper-slide {
        text-align: start;
    }

    .tab-nav button {
        max-width: 97%;
        width: 100%;
        font-size: 18px;
    }

    .videoEmbedded {
        margin-bottom: 40px;
    }
}



@media only screen and (max-width:768px) {


    .hundreadContent {
        justify-content: unset;
    }
}

@media only screen and (max-width:563px) {

    .bioTechBannerContent {
        max-width: 321px;
    }

    .tab-nav button {
        max-width: 94%;
        width: 100%;
        font-size: 18px;
    }

    .legacydemoCardContent p {
        max-width: 270px;
    }
}