@import url(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;
    /* padding-top: 83px; */
}

a, a:hover {
    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;
}
.align-center{
    display: flex;
    align-items: center;
}



.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 */
}

/* 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;
}

.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;
}

.drp-menu>a {
    position: relative;
    padding-right: 20px;


}

.drp-menu {
    position: relative;
}

.drp-menu>a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url(../img/down-arrow.svg)no-repeat;
    width: 14px;
    height: 8px;
    transition: all 0.5s ease-in-out;
}


.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';


}

.banner-content .heading {
    font-size: 50px;
    line-height: 70px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.banner-content .text {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
}

.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;
}

.tick-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 25px;
    height: 25px;
    background: url(../img/orange-tick.svg)no-repeat;
}


.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;
}

.book-btn {
    padding: 8px 16px;
    color: #1B1B1B !important;
    font-weight: 400;
    background: #F1823B;
    border-radius: 100px;
    position: relative;
    padding-right: 30px;
    transition: background-color 0.3s ease;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 10px;
    height: 10px;
    background: url(../img/right-arrow.svg) no-repeat center;
    transition: transform 0.3s ease;
}

/* 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;
    margin: 0;

}

.fullysolutionContent p {

    font-size: 18px;
    line-height: 24px;
    padding-top: 16px;
    margin-bottom: 0;


}

.fullSolutionImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appIotSection {
    background-image: url("https://www.labvantage.com/wp-content/uploads/2025/08/iotbg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 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;
    font-family: "Nunito Sans";

}

.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;
    font-family: "Nunito Sans";

}

.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;
    display: flex;
    align-items: center;
    justify-content: center;

}

.decisionGrid ul li a {
    color: #124061;
    text-decoration: none;
}

.decisionGrid ul li:hover {
    background-color: #124061;
    color: #ffffff;

}

.decisionGrid ul li:hover a {
    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 {
    max-width: 1269px;
    margin: auto;
    display: flex;
    border-radius: 16px;
    gap: 30px;
    background-image: url("https://www.labvantage.com/wp-content/uploads/2025/08/BookDemo.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}

.bookDemoCard .col-60 {
    width: 60%;
}

.bookDemoCard .col-40 {
    width: 40%;
}

.bookdemoCardContent {
    padding: 100px 0 100px 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: "Nunito Sans", sans-serif;


}

.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-style: Light Cn;
    font-size: 20px;
    line-height: 170%;

}

.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;

}

.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-style: Bold;
    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;


}

.switchingImg {
    position: relative;
    height: 100%;
    padding-top: calc(341 / 604 * 100%);
}

.switchingImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.switchingContent p {
    font-family: 'frutiger-regular';
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 140%;
    color: #124061;

}

.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;


}

.limsPartnerHeading p {
    font-family: 'frutiger-light';
    font-weight: 400;
    font-style: Light Cn;
    font-size: 20px;
    line-height: 30px;
    padding-top: 12px;

}

.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;

}

.limsPartnerListing {
    padding-top: 40px;
    max-width: 1240px;
    margin: auto;
}

.limsPartnerListing ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    height: 20px;
    width: 24px;
    background-image: url("../img/tickImg.svg");
    background-repeat: no-repeat;


}

.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;


}

.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;
}

.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-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;
}

.hundreadsSwiper a {
    display: block;
}

/* 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;

}

.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;

}

.worldWideRow {
    display: flex;
    align-items: center;

}

.worldwideHeading {
    max-width: 288px;
    margin: auto;
}

.worldwideHeading p {
    font-family: 'frutiger-regular';
    font-weight: 700;

    font-style: Bold;
    font-size: 40px;
    line-height: 120%;

    color: #124061;


}

.testimonialData p {
    max-width: 715px;
}

.worldWideRow .col-40 {
    width: 40%;
}

.worldWideRow .col-60 {
    width: 60%;
}

.WorldWideSection {
    margin-bottom: 100px;
}

.testimonialSwiper {
    height: 300px !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 .swiper-slide-active .testimonialData p {

    color: #124061;
    opacity: 1;
    font-family: 'frutiger-regular';
    font-weight: 400;
}

.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: 50%;
    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: 20%;
    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;
}



/* @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) {

    .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;
    }

}

@media only screen and (max-width:768px) {

    .hundreadContent {
        justify-content: unset;
    }
}

@media only screen and (max-width:563px) {

    .legacydemoCardContent p {
        max-width: 270px;
    }
}

