* {
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --z-distance: 8.519vw;
    --from-left: 1;
    --mobile-bkp: 650px;
}

body {
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}

.row {
    width: 100%;
    margin: 0 !important;
}

.active {
    color: #1BA249;
}

/* DEFAULT BUTTONS */
.button_1 {
    outline: none;
    border: none;
    border-top-right-radius: 32rem;
    padding: 1rem 4rem;
    background-color: #1BA249;
    color: #fff;
    font-weight: 600;
}

.button_2 {
    outline: none;
    border: none;
    padding: 10px;
    background-color: #1BA249;
    border-radius: 5px;
    color: #fff;
}

.button_3 {
    outline: none;
    border: 1px solid #1BA249;
    ;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 500px;
    color: #1BA249;
}

.button_4 {
    outline: none;
    border: none;
    padding: 10px 30px;
    background-color: #1BA249;
    border-radius: 200px;
    color: #fff;
}


/* animations */
.animate {
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.fadeLeft.animate {
    transform: translateX(-60px);
}

.fadeRight.animate {
    transform: translateX(60px);
}

.fadeInUp.animate {
    transform: translateY(60px);
}

.fadeInDown.animate {
    transform: translateY(-60px);
}

.animate.fade-in {
    opacity: 1;
    transform: translate(0, 0);
}








/* Apply the animation to the element */
.bouncing-element {
    animation: bounce 2s infinite;
}

/* Keyframes for the bouncing animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}






/* Apply the animation to the element */
.vibrating-element {
    animation: vibrate 0.5s infinite;
}

/* Keyframes for vibrating clockwise and counterclockwise */
@keyframes vibrate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}



/* animations */






.breadcrumbs {
    width: 100%;
    background-color: #696969;
    color: #fff;
    margin-top: 10px;
    padding: 10px 10%;
    font-weight: 500;
}

.hero_02 {
    width: 100%;
    height: max-content;
}

.hero_02_content {
    background: linear-gradient(to right, #000000c0 0%, #00000013 50%, transparent 100%);
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 16%;
    padding-bottom: 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero_02_content h2 {
    color: #fff;
    font-size: 300%;
}

.hero_02_content h1 {
    color: #fff;
    font-size: 300%;
}

.hero_02_content a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}


@media (max-width: 992px) {
    .hero_02_content {
        background: linear-gradient(to right, #00000098 0%, #00000098 50%, #00000098 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .breadcrumbs {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero_02_content {
        padding-top: 25%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero_02_content {
        padding-top: 30%;
        text-align: center;
    }
}

@media (max-width: 370px) {
    .hero_02_content {
        padding-top: 40%;
        text-align: center;
    }

    .hero_02_content h2 {
        font-size: 200%;
    }

    .hero_02_content h1 {
        font-size: 200%;
    }
}








.hero_02 {
    width: 100%;
    height: max-content;
}

.hero_03_content {
    background-color: #00000000;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 16%;
    padding-bottom: 8%;
}

.hero_03_content h1 {
    color: #fff;
    font-size: 300%;
}


.hero_03_content a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero_03_content {
        padding-top: 25%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero_03_content {
        padding-top: 30%;
        text-align: center;
    }
}

@media (max-width: 370px) {
    .hero_03_content {
        padding-top: 40%;
        text-align: center;
    }

    .hero_03_content h1 {
        font-size: 200%;
    }
}



.pulser {
    position: absolute;
    right: 35.3%;
    bottom: 48%;
    background-color: #00000000;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #ff0000;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}





/* ************************************************************************************************** */
.floating_btn_call {
    position: fixed;
    bottom: 330px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon_call {
    background-color: #195836;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #195836;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon_call {
    margin-top: 8px;
    color: #000000;
    font-size: 13px;
}

/* ************************************************************************************************** */
/* ************************************************************************************************** */
.floating_btn_instagram {
    position: fixed;
    bottom: 230px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon_instagram {
    background-color: #C5447E;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #C5447E;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon_instagram {
    margin-top: 8px;
    color: #000000;
    font-size: 13px;
}

/* ************************************************************************************************** */
/* ************************************************************************************************** */
.floating_btn_whatsapp {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon_whatsapp {
    background-color: #57E179;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #57E179;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon_whatsapp {
    margin-top: 8px;
    color: #000000;
    font-size: 13px;
}

/* ************************************************************************************************** */
/* ************************************************************************************************** */
.floating_btn_chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon_chat {
    background-color: #506ACA;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #506ACA;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon_chat {
    margin-top: 8px;
    color: #000000;
    font-size: 13px;
}

.contact_icon_close {
    background-color: #506ACA;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: none;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #506ACA;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.fa-xmark {
    display: none;
}

/* ************************************************************************************************** */
.floating_btn_call,
.floating_btn_instagram,
.floating_btn_whatsapp,
.contact_icon_close {
    position: fixed;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating_btn_call.show,
.floating_btn_instagram.show,
.floating_btn_whatsapp.show,
.contact_icon_close.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Ensure the default hidden state */
.floating_btn_call,
.floating_btn_instagram,
.floating_btn_whatsapp,
.contact_icon_close {
    display: flex;
}

.contact_icon_chat {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact_icon_chat.hide {
    display: none;
}
















/* header part css */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: max-content;
    background-color: #00000000;
    display: flex;
    flex-direction: column;
    z-index: 99;
    padding-left: 10px;
    padding-right: 10px;
    transition: padding-left 0.6s ease, padding-right 0.6s ease;

}

.header_slide_1 {
    width: 100%;
    background-color: #000;
    height: max-content;
    color: #fff;
    padding-left: 4rem;
    padding-right: 4rem;
}

.header_slide_1 p {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

.header_slide_1 a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 576px) {
    .header_slide_1 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.header_slide_2 {
    width: 100%;
    height: max-content;
    background-color: #ffffffcc;
    /* background: linear-gradient(to bottom, #fff 0%, #ffffffce 33.33333%, #ffffff3b 66.66666%,  #00000000 100%); */
    padding-left: 2rem;
    padding-right: 2rem;
    box-shadow: 0px 10px 20px 0px #00000096;
    border-radius: 20px;
    margin-top: 10px;
    transition: background-color 0.6s ease, margin-top 0.6s ease, border-radius 0.6s ease;
}


.navbar {
    width: 100%;
}

.header_col1 {
    display: flex;
    align-items: center;
    justify-content: start;
}

.header_col1 img {
    width: 50%;
}

.header_col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.header_col2 a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

.header_col2 h2 {
    color: #1BA249;
    font-weight: 800;
    letter-spacing: 0.1vw;
    text-align: center;
    /* text-decoration: underline; */
    border-bottom: 2px solid #0e5526;
}

.nav_subtitle_bold {
    color: #1BA249;
    font-weight: bold;
}


.lg_menu_container {
    background-color: #1ba24800;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.lg_menu_container a {
    padding: 5px 10px;
    border-radius: 10px;
}

.lg_menu_container .active {
    background-color: #1ba249;
    color: #fff;
}

.header_col3 {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header_col3 a {
    color: #000;
    font-size: 200%;
}

.mobile_menu {
    width: 100%;
    height: max-content;
    max-height: 80vh;
    display: none;
    overflow: scroll;
}

.mobile_menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
}

.mobile_menu li {
    list-style-type: none;
    padding-bottom: 10px;
    padding-right: 10px;
    text-align: right;
}

.mobile_menu i {
    color: #1BA249;
}

.mobile_Menu_heading {
    width: 100%;
    font-size: 180%;
    text-align: center;
    margin: 0;
    color: #1BA249;
    font-weight: 700;
}

.mobile_Menu_heading_col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile_Menu_heading_col span {
    font-size: 15px;
    text-align: center;
}

.mobile_item_submenu {
    padding-right: 20px;
    display: none;
    font-weight: 600;
}


.header_col4 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.login_button {
    background-color: #1ba249;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
}

.header_col4_sub {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header_col4_sub i {
    background-color: #1ba249;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
}


.header_col4 p {
    margin: 0;
    font-weight: bold;
    line-height: 0;
}

.header_col4 a {
    text-decoration: none;
    color: #000;
}

.header_col4 h3 {
    color: #1BA249;
    border: 4px solid #1BA249;
    border-radius: 100%;
    padding: 10px;
}

.pseudo_x {
    position: relative;
    display: inline-block;
    /* or flex if needed */
}


.services_submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    /* slight slide down effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 100%;
    left: -200%;
    width: 70vw;
    padding: 30px 50px;
    border-radius: 20px;
    background-color: #ffffff;
    z-index: 99;
}

.services_submenu_item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.services_submenu a {
    font-size: 90%;
    padding: 10px 0px !important;
}

.services_submenu i {
    color: #1BA249;
    padding-right: 10px;
}

.services_submenu a:hover {
    color: #1BA249;
}

.pseudo_x:hover .services_submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    /* slide up into view */
}




@media (max-width: 1330px) {
    .header_col4_sub i {
        display: none;
    }
}

@media (max-width: 1200px) {
    .header_col4 {
        display: none;
    }
}


@media (max-width: 992px) {
    .header_col2 a {
        font-size: 90%;
    }

    .header_col1 img {
        width: 150%;
    }
}

@media (max-width: 768px) {
    .header_top_strip {
        display: none;
    }

    .header_col2 {
        display: none;
    }

    .header_col1 img {
        width: 90%;
    }

    .mobile_Menu_heading {
        font-size: 120%;
    }
}

@media (min-width: 769px) {
    .header_col3 {
        display: none;
    }

    .mobile_Menu_heading_col {
        display: none
    }
}

@media (max-width: 630px) {
    .mobile_Menu_heading {
        font-size: 120%;
    }

    .mobile_Menu_heading_col span {
        font-size: 10px;
        text-align: center;
    }

    .mobile_Menu_heading_col img {
        width: 10%;
    }
}

@media (max-width: 450px) {
    .header_col1 img {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .header_slide_2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile_Menu_heading {
        font-size: 100%;
    }
}

@media (max-width: 450px) {
    .mobile_Menu_heading {
        font-size: 70%;
    }

    .mobile_Menu_heading_col {
        padding: 0 !important;
    }
}



/* HERO SECTION CSS */
.hero {
    /* margin-top: 5rem; */
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Puts the video behind the content */
}

.hero_content_container {
    background-color: #00000056;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* padding-top: 25%;
    padding-bottom: 10%;*/
    padding-right: 10%;
    padding-left: 10%;
}

.hero_content_container h2 {
    font-weight: 700;
    font-size: 300%;
    width: 80%;
    color: #ffffff;
}

.hero_content_container h1 {
    font-weight: 700;
    font-size: 300%;
    width: 80%;
    color: #ffffff;
}

.hero_content_container p {
    font-weight: 500;
    font-size: 100%;
    width: 50%;
    color: #ffffff;

}

@media (max-width: 992px) {
    .hero_content_container h2 {
        font-weight: 700;
        font-size: 300%;
        width: 100%;
    }

    .hero_content_container h1 {
        font-weight: 700;
        font-size: 300%;
        width: 100%;
    }

    .hero_content_container p {
        font-weight: 500;
        font-size: 100%;
        width: 80%;
    }

    .hero {
        height: 60vh;
    }
}

/* @media (max-width: 768px) {
    .hero_content_container {
        padding-top: 65%;
        padding-bottom: 10%;
        padding-right: 5%;
        padding-left: 5%;
    }
} */

@media (max-width: 576px) {
    .hero_content_container h2 {
        font-weight: 700;
        font-size: 200%;
        width: 100%;
    }

    .hero_content_container h1 {
        font-weight: 700;
        font-size: 200%;
        width: 100%;
    }

    .hero_content_container p {
        font-weight: 500;
        font-size: 100%;
        width: 100%;
    }

}

@media (max-width: 340px) {
    .hero_content_container h2 {
        font-size: 120%;
    }

    .hero_content_container h1 {
        font-size: 120%;
    }
}



/* SECTION 1 */
.journey_of_excellence {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
}

.journey_of_excellence h3 {
    font-weight: 600;
    font-size: 300%;
    text-align: center;
    color: #1BA249;
}

.journey_of_excellence_col1 {
    display: flex;
    align-items: center;
}

.journey_of_excellence_col1 img {
    width: 100%;
}


.journey_of_excellence_quote {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.journey_of_excellence_quote p {
    margin: 0;
    font-weight: bold;
}

.journey_of_excellence_quote a {
    text-decoration: none;
    color: #000;
}

.journey_of_excellence_quote img {
    padding-right: 10px;
}

.journey_of_excellence_col2 {
    text-align: center;
}

.journey_of_excellence_col2 p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.journey_of_excellence_related_services_col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey_of_excellence_related_services {
    background-color: #1BA249;
    color: #fff;
    width: 50%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: #0000008c 0px 0px 10px 0px;
    position: relative;
}

.journey_of_excellence_related_services img {
    width: 20%;
    position: absolute;
    top: -40px;
    right: 10px;
}

.header_col4_quote {
    text-align: center;
}





@media (max-width: 992px) {
    .journey_of_excellence h3 {
        font-weight: 600;
        font-size: 200%;
        text-align: center;
        padding: 5% 3%;
    }

    .journey_of_excellence_related_services {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .journey_of_excellence h3 {
        padding: 5% 25%;
    }
}

@media (max-width: 576px) {
    .service_excellence_lg {
        display: none;
    }

    .service_excellence_sm {
        display: block;
    }

    .journey_of_excellence_col2 p {
        text-align: justify;
    }

    .journey_of_excellence {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (min-width: 576px) {
    .service_excellence_lg {
        display: block;
    }

    .service_excellence_sm {
        display: none;
    }
}

/* SECTION 2 */
.accreditations {
    width: 100%;
    height: max-content;
    padding-top: 3rem;
    padding-left: 10%;
    padding-right: 10%;
}

/* ***************************************  */
/* old marquee css commented below */

/* 
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ffffff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 45s linear infinite;
}

.marquee-content img {
    margin: 0 20px;
    height: 50px;

    vertical-align: middle;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 600px) {
    .marquee-content img {
        margin: 0 10px;
        height: 30px;

    }
} */





.marquee {
    height: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 8px 0 4px 0;
}

.marquee img {
    height: auto;
}


/* Adjusted for a slower animation speed */
.marquee .marqueeone {
    animation: marquee 30s linear infinite;
}

.marquee .marqueetwo {
    animation: marquee 30s linear 7.5s infinite;
}

.marquee .marqueethree {
    animation: marquee 30s linear 15s infinite;
}

.marquee .marqueefour {
    animation: marquee 30s linear 22.5s infinite;
}


/* even out the elements */
.marquee div {
    position: absolute;
    width: 100%;
    left: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
}

.marquee:hover div {
    animation-play-state: paused;
}

/* add delay at the end of animation so you dont start while another div is going */
@keyframes marquee {
    0% {
        left: 100%;
    }

    50% {
        left: -100%;
    }

    100% {
        left: -100%
    }
}


/* CS FOR ACCREDITATIONS PART */
.accreditations h3 {
    font-weight: 600;
    font-size: 200%;
    text-align: center;
}

@media (max-width: 992px) {
    .accreditations h3 {
        font-weight: 600;
        font-size: 150%;
        text-align: center;
        padding: 5% 3%;
    }
}

@media (max-width: 576px) {
    .accreditations {
        padding-left: 5%;
        padding-right: 5%;
    }
}


















/* CSS FOR LAB CAPABILITIES PART  */
.lab_capabilities_lg {
    width: 100%;
    height: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3rem;
}

.lab_capabilities_lg h3 {
    font-weight: 600;
    font-size: 250%;
    text-align: center;
    padding-bottom: 2rem;
    color: #1BA249;
    text-decoration: underline #1BA249 7px;
}

.lab_capability_card {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.home_test_card {
    width: 100%;
    height: 100%;
    /* background-color: #1BA249; */
    /* border: 1px solid #1BA249; */
    border: 1px solid #1ba249;

    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease
}



.home_test_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            #1ba248a4);
    transform: rotate(-45deg);
    transition: all 1s ease;
    opacity: 0;
}

.home_test_card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 1ba249;
}

.home_test_card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}





/* .home_test_card:hover {
    background-color: #E0E21E;
    border: 2px solid #E0E21E;
} */


.home_test_card:hover.home_test_card p {
    color: #1BA249;
}

.home_test_card img {
    width: 100%;

    transition: 1s ease;
}

.home_test_card img:hover {
    scale: 110%;
}

.home_test_card p {
    color: #1BA249;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
}






.lab_capabilities_sm {
    width: 100%;
    height: max-content;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3rem;
}

.lab_capabilities_sm h3 {
    font-weight: 600;
    font-size: 200%;
    text-align: center;
    padding-bottom: 2rem;
}

.home_test_card_sm {
    width: 200px;
    height: max-content;
    background-color: #1BA249;
    border: 1px solid #1BA249;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.home_test_card_sm img {
    width: 100%;
    transition: 1s ease;
}

.home_test_card_sm img:hover {
    scale: 110%;
}

.home_test_card_sm p {
    color: #fff;
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.slider-container {
    overflow-x: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
}

.slider {
    display: flex;
    gap: 10px;
    cursor: grab;
}

@media (max-width: 576px) {
    .lab_capabilities_lg {
        padding-left: 3%;
        padding-right: 3%;
    }
}


/* 
@media (max-width: 576px) {
    .lab_capabilities_lg {
        display: none;
    }

    .lab_capabilities_sm {
        display: block;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (min-width: 576px) {
    .lab_capabilities_lg {
        display: block;
    }

    .lab_capabilities_sm {
        display: none;
    }
} */
.lab_capabilities_sm {
    display: none;
    padding-left: 5%;
    padding-right: 5%;
}


.home_services_banner {
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home_services_banner img {
    width: 50%;
}



.home_services_banner h3 {
    font-weight: 700;
    font-size: 38px;
    text-align: center;
    /* padding-bottom: 2rem; */
    color: #1BA249;
    /* text-decoration: underline #1BA249 7px; */
}

.home_services_banner p {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin: 0;
    color: #1BA249;

}

@media (max-width: 992px) {
    .home_services_banner h3 {
        font-size: 36px;
    }

    .home_services_banner p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .home_services_banner h3 {
        font-size: 30px;
    }

    .home_services_banner p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .home_services_banner img {
        display: none;
    }

    .home_services_banner {
        padding: 30px 10px;
        background-image: url(../img/lab-mets-lab-bw.webp);
        background-size: cover;
        /* Ensures the image covers the entire div */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
        /* Prevents the image from repeating */
        overflow: hidden;
    }

    .home_services_banner h3 {
        color: #fff;
        font-size: 25px;
    }

    .home_services_banner p {
        color: #fff;
    }
}

.hero_seperator {
    width: 100%;
    height: 15px;
}

.hero_seperator_fill {
    width: 80%;
    height: 100%;
    background: #1BA249;
    border: 1px solid #1BA249;
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%);
}




/* CSS FOR achivements PART  */

.achivements {
    width: 100%;
    height: max-content;
    background-color: #1BA249;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
}

.achivements_col1 {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    flex-direction: column;
}

.achivements_col1 img {
    width: 30%;
}

.achivements h4 {
    padding-left: 20px;
    color: #fff;
    font-weight: 600;
    z-index: 1;
    text-align: center;
}









.progress-section {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    background-color: #000000;
    padding: 20px;
}

.progress-bar-container {
    text-align: center;
    color: white;
    width: max-content;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 15px;
    /* background-color: #ffffff !important; */
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0;
    border: 1px solid #fff;
}

.progress-fill {
    display: block;
    height: 100%;
    background-color: #1BA249;
    width: 0;
    border-radius: 5px;
    transition: width 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    color: white;
    opacity: 100;
    /* Initially hidden */
    transition: opacity 0.5s ease 0.5s;
    /* Delay the text display slightly */
}

@media (max-width: 576px) {
    .progress-section {
        flex-direction: column;
    }

    .progress-bar-container {
        width: 100%;
    }
}








.special_testing {
    width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 20px;
    padding-bottom: 40px;

}

.special_testing_container {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px #3f3f3f62;
    padding: 20px;
}

.special_testing p {
    font-size: 150%;
    font-weight: 600;
}


@media (max-width: 992px) {
    .special_testing {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 768px) {
    .special_testing p {
        font-size: 100%;
        font-weight: 600;
    }

}

@media (max-width: 576px) {
    .special_testing {
        padding-left: 5%;
        padding-right: 5%;
    }
}






/* css of locations - home page  */

.home_locations_header {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
}

.home_locations_header h2 {
    width: 100%;
    font-weight: 700;
    font-size: 300%;
    /* margin-top: 15rem; */
}





.home_locations {
    width: 100%;
    height: max-content;
    position: relative;
    background-color: #FFFFE2;
}

.home_locations img {
    width: 100%;
    position: relative;
}

.home_locations_content_container {
    width: 50%;
    height: max-content;
    position: absolute;
    bottom: 0;
    left: 10%;
    padding: 20px;
}

.home_locations_content_container h2 {
    width: 100%;
    font-weight: 700;
    font-size: 300%;
    /* margin-top: 15rem; */
}


.home_locations_content_container p {
    width: 80%;
    text-align: justify;
}

.home_locations_address_card_col {
    padding: 20px;
}

.home_locations_address_card {
    background-image: url(../img/addressCardBg.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
    text-align: center;
    width: max-content;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #00000036;
    padding: 5px;

    /* margin-right: 10px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home_locations_address_card p {
    text-align: center;
    font-weight: bold;
    font-size: 70%;
}

.home_locations_address_card a {
    text-align: center;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 70%;

}

@media (max-width: 1200px) {
    .home_locations_address_strip {
        width: 85%;
    }
}

@media (max-width:800px) {
    .home_locations_address_strip {
        width: 100%;
    }

    .home_locations_content_container h2 {
        width: 90%;
        margin-top: 5rem;
    }

    .home_locations_content_container p {
        width: 100%;
    }
}

@media (max-width:700px) {
    .home_locations_address_strip {
        flex-direction: column;
    }
}

@media (max-width:576px) {
    .home_locations {
        padding-left: 0%;
        padding-right: 0%;
    }

    .home_locations_header {
        padding-left: 5%;
        padding-right: 5%;
    }

}





















/* ******************************************************************** */
.india_popup_hidden {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 35%;
    bottom: 47%;
    background-color: #ff000000;
}

.india_popup_display {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 15rem;
    height: max-content;
    border-radius: 5px;
    position: absolute;
    right: 37%;
    bottom: 49%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #00000080;
    padding: 5px;
}

.india_popup_display p {
    font-weight: 500;
}

.india_popup_display a {
    color: #000;
    text-decoration: none;
}

.india_popup_hidden:hover+.india_popup_display {
    visibility: visible;
    opacity: 1;
}



/* ******************************************************************** */

.uae_popup_hidden {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 39.5%;
    bottom: 48.5%;
    background-color: #ff000000;
}

.uae_popup_display {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 15rem;
    height: max-content;
    border-radius: 5px;
    position: absolute;
    right: 42%;
    bottom: 50%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #00000080;
    padding: 5px;
}

.uae_popup_display p {
    font-weight: 500;
}

.uae_popup_display a {
    color: #000;
    text-decoration: none;
}

.uae_popup_hidden:hover+.uae_popup_display {
    visibility: visible;
    opacity: 1;
}



/* ******************************************************************** */

.quatar_popup_hidden {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 40.5%;
    bottom: 50%;
    background-color: #ff000000;
}

.quatar_popup_display {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 15rem;
    height: max-content;
    border-radius: 5px;
    position: absolute;
    right: 43%;
    bottom: 50%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #00000080;
    padding: 5px;
}

.quatar_popup_display p {
    font-weight: 500;
}

.quatar_popup_display a {
    color: #000;
    text-decoration: none;
}

.quatar_popup_hidden:hover+.quatar_popup_display {
    visibility: visible;
    opacity: 1;
}



/* ******************************************************************** */

.usa_popup_hidden {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 71.5%;
    bottom: 53%;
    background-color: #ff000000;
}

.usa_popup_display {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 15rem;
    height: max-content;
    border-radius: 5px;
    position: absolute;
    left: 29%;
    bottom: 52%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #00000080;
    padding: 5px;
}

.usa_popup_display p {
    font-weight: 500;
}

.usa_popup_display a {
    color: #000;
    text-decoration: none;
}

.usa_popup_hidden:hover+.usa_popup_display {
    visibility: visible;
    opacity: 1;
}


/* ******************************************************************** */

.uk_popup_hidden {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 50.7%;
    bottom: 60%;
    background-color: #ff000000;
}

.uk_popup_display {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 15rem;
    height: max-content;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    bottom: 65%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #00000080;
    padding: 5px;
}

.uk_popup_display p {
    font-weight: 500;
}

.uk_popup_display a {
    color: #000;
    text-decoration: none;
}

.uk_popup_hidden:hover+.uk_popup_display {
    visibility: visible;
    opacity: 1;
}


@media (max-width: 992px) {
    .india_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 35%;
        bottom: 59%;
        background-color: #ff000000;
    }

    .uae_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 39.5%;
        bottom: 59%;
        background-color: #00000000;
    }

    .quatar_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 40.5%;
        bottom: 61%;
        background-color: #ff000000;
    }

    .usa_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 71.5%;
        bottom: 63%;
        background-color: #ff000000;
    }

    .uk_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 50.7%;
        bottom: 70%;
        background-color: #ff000000;
    }
}

@media (max-width: 768px) {
    .india_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 34%;
        bottom: 65%;
        background-color: #ff000000;
    }

    .uae_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 38%;
        bottom: 64%;
        background-color: #ff000000;
    }

    .quatar_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 40.5%;
        bottom: 66%;
        background-color: #ff000000;
    }

    .usa_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 71.5%;
        bottom: 68%;
        background-color: #ff000000;
    }

    .uk_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 50.7%;
        bottom: 72%;
        background-color: #ff000000;
    }
}

@media (max-width: 576px) {
    .india_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 30%;
        bottom: 80%;
        background-color: #ff000000;
    }

    .uae_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 37%;
        bottom: 79.5%;
        background-color: #ff000000;
    }

    .quatar_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 40.5%;
        bottom: 82%;
        background-color: #ff000000;
    }

    .usa_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 71.5%;
        bottom: 82%;
        background-color: #ff000000;
    }

    .uk_popup_hidden {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 50.7%;
        bottom: 83%;
        background-color: #ff000000;
    }

    .india_popup_display {
        right: 37%;
        bottom: 80%;
    }

    .uae_popup_display {
        right: 42%;
        bottom: 85%;
    }

    .quatar_popup_display {
        right: 43%;
        bottom: 85%;
    }

    .usa_popup_display {
        left: 29%;
        bottom: 80%;
    }

    .uk_popup_display {
        left: 20%;
        bottom: 70%;
    }

}



















/* CSS FOR FOOTER  */
.footer {
    width: 100%;
    height: max-content;
    background-image: url(../img/footer_banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
    color: #fff;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer_col {
    margin-top: 20px !important;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer h3 {
    color: #fff;
    font-weight: 600;
}

.footer p {
    font-weight: 300;
}

.footer i {
    color: #E0E21D;
}

.footer_input_container {
    width: max-content;
    max-width: 100%;
    background-color: #fff;
    /* border-radius: 8px; */
    padding: 3px;
}

.footer_input_container input {
    outline: none;
    border: none;
    padding: 5px;
}

.footer_input_container button {
    border-radius: 0px;
}

.footer h5 {
    color: #fff;
    font-weight: 500;
    width: 100%;
    border-bottom: 2px solid #E0E21D;
}

.footer_dialer {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer_dialer img {
    padding-right: 10px;
}



.footer_address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer_address img {
    padding-right: 10px;
}

.footer_base1 p {
    font-size: 80%;
    margin-top: 30px !important;

}

.footer_base2 p {
    margin-top: 30px !important;
    font-size: 80%;
    float: right;
}

.subscription_box {
    background-color: #1BA249;
    padding: 30px 10%;
    color: #fff;
}

@media (max-width: 576px) {
    .footer_input_container input {
        width: 100%;
    }

    .footer_input_container button {
        width: 100%;
    }

    .footer_base2 p {
        float: none;
        text-align: center;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .subscription_box {
        padding: 30px 3%;
    }
}




.social_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_links i {
    font-size: 1.5rem;
}



/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */






.about_hero {
    background-image: url(../img/about-custom-banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.about_sec1 {
    width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%;
    padding-bottom: 6%;
}

.about_sec1_row {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 10px #5555554d;
    padding: 30px;
}

.about_sec1 h3 {
    font-weight: 600;
    font-size: 300%;
    text-align: left;
}

.about_sec1 h2 {
    font-weight: 600;
    font-size: 300%;
    text-align: left;
}

.about_sec1 p {
    text-align: justify;
}

.about_sec1_col1 {
    padding-bottom: 10px;
}


.about_sec1_col2 img {
    width: 90%;
}


@media (max-width: 992px) {
    .about_sec1_col2 {
        display: none;
    }

    .about_hero {
        display: block;
    }
}

@media (max-width: 768px) {
    .about_sec1 {
        width: 100%;
        height: max-content;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 6%;
        padding-bottom: 6%;
    }

    .about_sec1 h3 {
        font-size: 200%;
    }

    .about_sec1 h2 {
        font-size: 200%;
    }
}

@media (max-width: 576px) {
    .about_sec1 h3 {
        font-size: 150%;
    }

    .about_sec1 h2 {
        font-size: 150%;
    }
}





.team {
    width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%;
    padding-bottom: 5%;

    background-image: url(../img/green-square-background.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.team h3 {
    font-weight: 600;
    font-size: 300%;
    text-align: left;
    padding-bottom: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .team {
        padding-left: 5%;
        padding-right: 5%;
    }

    .team h3 {
        font-size: 200%;
    }
}

@media (max-width: 576px) {
    .team h3 {
        font-size: 150%;
    }
}

.team_card_col {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team_card_col img {
    width: 70%;
}

.team_card {
    width: 100%;
    max-width: 400px;
    height: max-content;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 10px #00000059;
}

.team_card img {
    width: 100%;
}

.team_card h5 {
    font-weight: 600;
}

.team_card h4 {
    font-weight: 600;
}

.team_card p {
    text-align: justify;
}


















.about_sec2 {
    width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;

    background-image: url(../img/stand-out-bg.webp);
    background-size: 100% 100%;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;

    color: #fff;
}

.about_sec2 h3 {
    font-weight: 600;
    font-size: 300%;
    text-align: left;
    padding-bottom: 40px;
    text-align: left;
    color: #1BA249;
}

.about_sec2 p {
    font-weight: 400;
    font-size: 120%;
    margin: 0;
    color: #000;
}

.about_sec2 h6 {
    font-weight: 500;
    padding-bottom: 30px;
    color: #000;
    font-size: 120%;
}

.standoutCol {
    margin-top: 20px !important;
}

.standoutBox {
    border: 1px solid #1ba249;
    padding: 30px;
    height: 100%;
}

.standoutBox i {
    background-color: #1ba249;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
}

.standoutBox p {
    font-size: 90%;
}

@media (max-width: 768px) {
    .about_sec2 {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 10%;
    }

    .about_sec2 h3 {
        font-size: 200%;
    }

    .about_sec2 h3 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about_sec2 h3 {
        font-size: 150%;
    }
}


















/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.services_hero {
    background-image: url(../img/service-custom-banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}



.service_cards_sec {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    padding-bottom: 1rem;
}

.service_card_col {
    margin-bottom: 80px;
    padding-bottom: 5rem;
}

.service_card {
    width: 100%;
    height: max-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.service_card:hover {
    scale: 1.05;
}

.service_card img {
    width: 100%;
    border-radius: 0px;
}

.service_card_content {
    width: 100%;
    height: 200px;
    padding: 10px;
    border-radius: 0px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 70%;
    box-shadow: 0px 9px 20px 0px #0000009e;
}

.service_card_content h5 {
    font-weight: bold;
}

.service_card_content a {
    color: #1BA249;
    text-decoration: none;
}

@media (max-width: 1250px) {
    .service_card_col {
        margin-bottom: 50px;
        padding-bottom: 8rem;
    }
}




















/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.accreditations_hero {
    background-image: url(../img/accreditations-custom-banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.accreditations {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.accreditations_col {
    padding-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.accreditations img {
    width: 100%;
}

@media (max-width: 768px) {
    .accreditations {
        padding-left: 5%;
        padding-right: 5%;
    }
}


























/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.report_hero {
    background-image: url(../img/report-meeting.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.report_login {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.report_login_card {
    width: 100%;
    height: max-content;
    box-shadow: 0px 0px 10px #000;
    padding: 20px;
    border-radius: 20px;
}

.report_login_card_col2 img {
    width: 100%;
}

.report_login_card_col1 input {
    border-radius: 10px;
    outline: none;
    border: 1px solid #000;
    padding: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.report_login_card_col1 label {
    color: #000;
    font-size: 120%;
    font-weight: 500;
}

@media (max-width: 768px) {
    .report_login_card_col2 {
        display: none;
    }

    .report_login_card {
        width: 100%;
        height: max-content;
        box-shadow: 0px 0px 10px #000;
        padding: 0px;
        border-radius: 20px;

        background-image: url(../img/report_login_card_bg.webp);
        background-size: cover;
        /* Ensures the image covers the entire div */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
        /* Prevents the image from repeating */
        overflow: hidden;
    }

    .report_login_card_col1 {
        padding: 20px;
        background-color: #c7c7c79d;
    }
}























/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.contact_hero {
    background-image: url(../img/contact-custom-banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.contact_sec {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.message_card {
    width: 100%;
    height: max-content;
    padding: 30px;
    background-color: #F3F6F7;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #0000006c;
}

.message_card h5 {
    font-weight: bold;
    font-size: 200%;
}

.message_card p {
    color: #1BA249;
    font-size: 80%;
}

.message_card input {
    margin-bottom: 30px;
    border: 2px solid #00000044;
    border-radius: 200px;
    padding: 10px;
    width: 100%;
}

.message_card textarea {
    margin-bottom: 30px;
    border: 2px solid #00000044;
    border-radius: 20px;
    padding: 10px;
    width: 100%;
}

.contact_sec h4 {
    font-weight: bold;
    font-size: 200%;
}

.contact_sec h6 {
    font-weight: bold;
    font-size: 150%;
    padding-top: 30px;
}

.timings_div {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timings_div p {
    margin: 0;
}


.contact_location_switcher {
    width: 100%;
    padding: 40px 10%;
}

.contact_location_switcher_tab {
    width: 100%;
    height: max-content;
    padding: 20px;
    /* border-radius: 20px; */
    border-bottom: 1px solid #00000028;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #adadad00;
    position: relative;
}

.contact_location_switcher_tab button {
    width: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: #1BA249;
    font-weight: 600;
}

.contact_location_tab_indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100%/6);
    height: 2px;
    background-color: #1BA249;
    z-index: 1;
    transition: transform 0.8s ease;
    transform: translateX(0%);
}



.contact_details_tab {
    width: 100%;
    height: max-content;
    padding: 20px;
    display: none;
}

.contact_details_tab_cont_container {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    padding-bottom: 10px;
}

.contact_details_tab_cont_container img {
    padding-right: 15px;
}

.contact_details_tab_cont_container a {
    text-decoration: none;
    color: #000;
}

.contact_details_tab h4 {
    font-weight: bold;
    font-size: 200%;
}

.contact_details_tab h6 {
    font-weight: bold;
    font-size: 150%;
    padding-top: 30px;
}

@media (max-width: 768px) {
    .contact_sec {
        padding-left: 5%;
        padding-right: 5%;
    }

    .message_card {
        padding: 15px;
    }

    .contact_location_switcher {
        padding: 40px 2%;
    }
}













/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */





.career_hero {
    /* background-image: url(../img/corporate-woman-businesswoman-holding-clipboard.webp); */
    background-image: url(../img/career-dummy-banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.open_positions {
    width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.open_positions h3 {
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.vaccancy_col {
    margin-bottom: 20px;
}

.vaccancy_card {
    width: 100%;
    height: max-content;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 10px #0000009d;
    border-radius: 10px;
    transition: 0.3s ease;
}

.vaccancy_card:hover {
    scale: 1.05;
}

.vaccancy_card h6 {
    margin: 0;
}

.hiring_process {
    width: 100%;
    height: max-content;

    padding-left: 2%;
    padding-right: 2%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;

    background-image: url(../img/Vector_1.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.hiring_process_h3 {
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.hiring_process_col {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hiring_process_card {
    width: 200px;
    height: 200px;
    padding: 5px;
    box-shadow: 0px 0px 10px #00000080;
    border-radius: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.hiring_process_card_inner {
    width: 180px;
    height: 180px;
    padding: 10px;
    box-shadow: 0px 0px 10px #00000080;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    text-align: center;
}

.hiring_process_card h6 {
    font-weight: bold;
    font-size: 80%;
}

.hiring_process_card p {
    font-size: 70%;
    font-weight: 500;
    margin: 0;
}


@media (max-width: 768px) {
    .open_positions {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hiring_process {
        background-image: url(../img/Vector_2.webp);
    }
}






















/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.water_testing_hero {
    background-image: url(../img/Group84banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}

.service_detailing {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.service_detailing img {
    width: 100%;
}

.service_detailing p {
    font-size: 16px;
    padding-top: 10px;
}

.service_detailing h5 {
    font-weight: bold;
}



.service_detailing_col img {
    /* border-radius: 10px; */
}

.service_detailing_card {
    width: 100%;
    height: 100%;
    border: 1px solid #00000083;
    border-radius: 15px;
}

.service_detailing_card h6 {
    font-weight: bold;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.service_detailing_card p {
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
}






@media (max-width: 768px) {
    .service_detailing {
        padding-left: 5%;
        padding-right: 5%;
    }
}
























/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */
/* ************************************************************************************************************************** */



.fod_testing_hero {
    background-image: url(../img/Group84banner.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
}










@media (max-width: 576px) {}

@media (max-width: 768px) {}







































.progress_container {
    /* padding: 20px 0; */
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* flex-wrap: wrap; */
    /* gap: 80px 100px; */
    background: #cfd1e100;
}

.progress_box {
    position: relative;
    width: 240px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress_box .content .percent {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress_box .content .percent::before {
    content: attr(data-text);
    position: absolute;
    inset: 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 0.68rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.progress_box .content .percent svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}

.progress_box .content .percent svg circle {
    fill: transparent;
    stroke-width: 3;
    stroke: rgba(255, 255, 255, 0.055);
    transform: translate(5px, 5px);
}

.progress_box .content .percent svg circle:nth-child(2) {
    stroke: #ffffff;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    /* Default hidden state */
    transition: stroke-dashoffset 4s linear;
}

.progress_box.active .content .percent svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
}

.progress_box .content .number {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
}

.progress_box .content .number h2 span {
    font-weight: 300;
    font-size: 1.5rem;
}

@media (max-width: 576px) {
    .progress_container {
        flex-direction: column;
    }
}




























.liquid_box {
    width: 200px;
    height: 200px;
    /* border: 1px dashed rgba(255, 255, 255, 0.4); */
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;

        border-radius: 50%;
        /* border: 1px dashed rgba(255, 255, 255, 0.4); */
        transform: scale(1);
    }
}

.liquid_spin-container {
    width: 100%;
    height: 100%;
    animation: spin 12s ease-in-out infinite alternate;
    position: relative;
}

.liquid_shape {
    width: 100%;
    height: 100%;
    transition: border-radius 1s ease-out;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 4s ease-in-out infinite both alternate;
    position: absolute;
    overflow: hidden;
    z-index: 5;
}

.liquid_bd1 {
    width: 142%;
    height: 142%;
    position: absolute;
    left: -21%;
    top: -21%;
    background: url(../img/chemist-works-in-a-lab.webp);
    background-size: 100%;
    background-position: center center;
    display: flex;
    color: #003;
    font-size: 5vw;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    animation: spin 12s ease-in-out infinite alternate-reverse;
    opacity: 1;
    z-index: 2;
}

.liquid_bd2 {
    width: 142%;
    height: 142%;
    position: absolute;
    left: -21%;
    top: -21%;
    background: url(../img/PROJECT\ COMPLETION.webp);
    background-size: 100%;
    background-position: center center;
    display: flex;
    color: #003;
    font-size: 5vw;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    animation: spin 12s ease-in-out infinite alternate-reverse;
    opacity: 1;
    z-index: 2;
}

.liquid_bd3 {
    width: 142%;
    height: 142%;
    position: absolute;
    left: -21%;
    top: -21%;
    background: url(../img/REPEATCLIENTRATE.webp);
    background-size: 100%;
    background-position: center center;
    display: flex;
    color: #003;
    font-size: 5vw;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    animation: spin 6s ease-in-out infinite alternate-reverse;
    opacity: 1;
    z-index: 2;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60%;
    }
}

/* @keyframes spin {
    to {
        transform: rotate(1turn);
    }
} */















@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


.serv_floating_icon_rt {
    width: 100px;
    position: absolute;
    top: 500px;
    right: 30px;
    animation: floatUpDown 3s ease-in-out infinite;
}

.serv_floating_icon_lt {
    width: 100px;
    position: absolute;
    top: 800px;
    left: 30px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .serv_floating_icon_rt {
        z-index: 0;
        opacity: 0.7;
        width: 50px;
        right: 10px;
    }

    .serv_floating_icon_lt {
        z-index: 0;
        opacity: 0.7;
        width: 50px;
        left: 10px;
    }
}



















.serv_row {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 3px #92929296;
    margin-bottom: 20px !important;
}

.service_detailing_img {
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;

}

.service_detailing_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px !important;
}

.img_flex_height {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* .lg_only {
    display: block;
} */

@media (max-width: 768px) {
    .service_detailing_img img {
        margin-bottom: 10px;
    }

    .service_detailing_img {
        max-height: 500px;

    }
}

@media (max-width: 992px) {

    .lg_only {
        display: none;
    }
}













/* From Uiverse.io by arshshaikh06 */
.slide_banner_container {
    height: 80vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 20px #dbdbdb;
    font-family: sans-serif;
    display: none;
}

.palette {
    display: flex;
    height: 100%;
    width: 100%;
}

.banner_slide_card {
    max-width: 7.14285714285%;
    height: 100%;
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    transition: flex 0.1s linear;
    text-align: center;
    filter: contrast(50%);
    transition: 0.8s ease;
}

.banner_slide_card span {
    opacity: 0;
    transition: opacity 0.1s linear;
}

.banner_slide_card:nth-child(1) {
    background: url(../img/wwt7.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(2) {
    background: url(../img/candy-nuts.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(3) {
    background: url(../img/cigarette-set.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(4) {
    background: url(../img/cosmetics\ testing.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(5) {
    background: url(../img/ogts3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(6) {
    background: url(../img/yellow-brown-fabric.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(7) {
    background: url(../img/building\ materials\ testing.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(8) {
    background: url(../img/ppt2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(9) {
    background: url(../img/hht1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(10) {
    background: url(../img/apf2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(11) {
    background: url(../img/cp2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(12) {
    background: url(../img/pharmceuticals\ testing.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(13) {
    background: url(../img/eet2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_slide_card:nth-child(14) {
    background: url(../img/automobiles\ testing.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}



.banner_slide_card:hover {
    flex: 40;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    filter: drop-shadow(100%);
    max-width: 100%;

}

.banner_slide_card:hover span {
    opacity: 1;
    font-size: 200%;
}

#stats {
    height: 14%;
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5em;
    box-sizing: border-box;
    color: #bebebe;
}

#stats svg {
    fill: #bebebe;
    transform: scale(1.2);
}

@media (min-width: 992px) {
    .slide_banner_container {
        display: block;
    }
}































.slider {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.slider::before,
.slider::after {
    content: '';
    left: -1vw;
    top: -1vh;
    display: block;
    position: absolute;
    width: 102vw;
    height: 102vh;
    background-position: center;
    background-size: cover;
    will-change: opacity;
    z-index: -1;
    box-shadow: 0 0 0 50vmax rgba(0, 0, 0, 0.7) inset;
}

.slider::before {
    background-image: var(--img-prev);
}

.slider::after {
    -webkit-transition: opacity 0.7s;
    transition: opacity 0.7s;
    opacity: 0;
    background-image: var(--img-next);
}

.slider--bg-next::after {
    opacity: 1;
}

.slider__content {
    margin-top: 13%;
    margin-left: 15%;
    width: 65vw;
    height: 32.5vw;
    max-height: 60vh;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
    -webkit-transform: translateZ(var(--z-distance));
    transform: translateZ(var(--z-distance));
}

.slider__images {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 70%;
    z-index: 0;
    box-shadow: 0 0 5em #000;
}

.slider__images-item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    will-change: transform;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    visibility: hidden;
}

.slider__images-item img {
    display: block;
    position: relative;
    left: -1em;
    top: -1em;
    width: calc(100% + 1em * 2);
    height: calc(100% + 1em * 2);
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
}

.slider__images-item--active {
    z-index: 20;
    visibility: visible;
}

.slider__images-item--subactive {
    z-index: 15;
    visibility: visible;
}

.slider__images-item--next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.slider__images-item--prev {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.slider__images-item--transit {
    -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: transform 0.7s, opacity 0.7s;
    transition: transform 0.7s, opacity 0.7s, -webkit-transform 0.7s;
}

.slider__text {
    position: relative;
    height: 70%;
}

.slider__text-item {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0.5em;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.slider__text-item>* {
    overflow: hidden;
    position: absolute;
}

.slider__text-item h3,
.slider__text-item p {
    -webkit-transition: -webkit-transform 0.35s ease-out;
    transition: -webkit-transform 0.35s ease-out;
    transition: transform 0.35s ease-out;
    transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
    line-height: 1.5;
    overflow: hidden;
}

.slider__text-item h3 {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider__text-item p {
    font-family: 'Open Sans', sans-serif;
    padding: 1em;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider__text-item h3::before,
.slider__text-item p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.35s ease-out 0.28s;
    transition: -webkit-transform 0.35s ease-out 0.28s;
    transition: transform 0.35s ease-out 0.28s;
    transition: transform 0.35s ease-out 0.28s, -webkit-transform 0.35s ease-out 0.28s;
}

.slider__text-item h3::before {
    background-color: #000;
}

.slider__text-item p::before {
    background-color: #fff;
}

.slider__text-item h3 {
    margin: 0;
    font-size: 3.5em;
    padding: 0 .3em;
    position: relative;
    font-weight: 700;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.slider__text-item p {
    margin: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.slider__text-item-head {
    top: -0.5em;
    -webkit-transform: translateZ(3em);
    transform: translateZ(3em);
    -webkit-clip-path: polygon(0 0, 0.5em 100%, 100% 100%, calc(100% - .3em) 0.3em);
    clip-path: polygon(0 0, 0.5em 100%, 100% 100%, calc(100% - .3em) 0.3em);
}

.slider__text-item-info {
    bottom: 0;
    right: 0;
    max-width: 75%;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    -webkit-transform: translateZ(2em);
    transform: translateZ(2em);
    -webkit-clip-path: polygon(0.5em 0, 100% 0%, calc(100% - .5em) 100%, 0 calc(100% - .5em));
    clip-path: polygon(0.5em 0, 100% 0%, calc(100% - .5em) 100%, 0 calc(100% - .5em));
}

.slider__text-item--active h3,
.slider__text-item--active p {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.slider__text-item--active h3::before {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.slider__text-item--active p::before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.slider__text-item--backwards h3::before,
.slider__text-item--backwards p::before {
    -webkit-transition: -webkit-transform 0.35s ease-in;
    transition: -webkit-transform 0.35s ease-in;
    transition: transform 0.35s ease-in;
    transition: transform 0.35s ease-in, -webkit-transform 0.35s ease-in;
}

.slider__text-item--backwards h3,
.slider__text-item--backwards p {
    -webkit-transition: -webkit-transform 0.35s ease-in 0.35s;
    transition: -webkit-transform 0.35s ease-in 0.35s;
    transition: transform 0.35s ease-in 0.35s;
    transition: transform 0.35s ease-in 0.35s, -webkit-transform 0.35s ease-in 0.35s;
}

.slider__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slider__nav-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider__nav-arrow {
    height: 100vh;
    width: 50vw;
    text-indent: -9999px;
    white-space: nowrap;
}

.slider__nav-arrow--left {
    --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 4 4'%3E %3Cpolyline points='3 1 1 2 3 3' stroke='white' stroke-width='.3' stroke-opacity='.5' fill='none'%3E%3C/polyline%3E %3C/svg%3E");
    cursor: var(--arrow) 40 40, auto;
}

.slider__nav-arrow--right {
    --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 4 4'%3E %3Cpolyline points='1 1 3 2 1 3' stroke='white' stroke-width='.3' stroke-opacity='.5' fill='none'%3E%3C/polyline%3E %3C/svg%3E");
    cursor: var(--arrow) 40 40, auto;
}

.slider__nav-dots {
    margin-top: 101vh;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    padding: 1em;
    pointer-events: none;
}

.slider__nav-dots::before {
    content: '';
    position: absolute;
    left: calc(1em + 1em + 2px);
    top: calc(1em + 2px);
    width: calc(1em - 2px * 2);
    height: calc(1em / 2 - 2px * 2);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: -webkit-transform 0.7s ease-out;
    transition: -webkit-transform 0.7s ease-out;
    transition: transform 0.7s ease-out;
    transition: transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
    -webkit-transform: translateX(calc((1em + 1em * 2) * (var(--from-left) - 1)));
    transform: translateX(calc((1em + 1em * 2) * (var(--from-left) - 1)));
}

.slider__nav-dot {
    margin: 0 1em;
    width: 1em;
    height: 0.5em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* 
The cursor is not the default one because of a weird bug 
related to custom cursors above
*/
    cursor: crosshair;
    pointer-events: all;
    display: inline-block;
}

.slider__nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.slider__nav-dot:active {
    border-color: rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 1600px) {
    .slider__text {
        height: 50%;
    }

    .slider__images {
        height: 50%;
    }
}

@media only screen and (max-width: 1250px) {
    .slider__content {
        margin-top: 20%;
        margin-left: 15%;
    }
}

@media only screen and (max-width: 650px) {

    .slider::before,
    .slider::after {
        display: none;
    }



    .slider__text-item-info {
        bottom: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    .slider__text-item-info p {
        padding: 1em .8em;
    }

    .slider__text-item-head {
        top: 5vh;
        left: 10vw;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .slider__text-item-head h3 {
        font-size: 2.5em;
    }

    .slider__nav-dots {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .slider__nav-arrow {
        width: 10vw;
        position: relative;
        cursor: auto;
    }

    .slider__nav-arrow:active {
        -webkit-filter: brightness(0.5);
        filter: brightness(0.5);
    }

    .slider__nav-arrow::before {
        content: '';
        background-image: var(--arrow);
        background-size: cover;
        width: 8vw;
        height: 8vw;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .slider__nav-arrow--left {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7) 0, transparent 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0, transparent 100%);
    }

    .slider__nav-arrow--left:active {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9) 0, transparent 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0, transparent 100%);
    }

    .slider__nav-arrow--right {
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.7) 0, transparent 100%);
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0, transparent 100%);
    }

    .slider__nav-arrow--right:active {
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.9) 0, transparent 100%);
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0, transparent 100%);
    }
}

.prxv_breadcrumbs {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 999999;
    background-color: #ffffffe7;
    padding: 20px 40px;
    font-weight: 700;
    color: #000;
}





.application_popup_container {
    width: 100vw;
    height: 100vh;
    padding: 20vh 10vw;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #eeff0018;
    display: none;
}

.application_popup_form {
    width: 100%;
    height: max-content;
    padding: 5%;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: #1ba248fd;
    color: #fff;
}

.application_popup_form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #fff;
}

.application_popup_form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #ffffff;
}

.application_popup_form h4 {
    font-size: 100%;
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 3px;
}

.application_popup_form button {
    background-color: #fff;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    color: #1BA249;
    font-weight: bold;
}


.testing_capabilities_2 {
    padding: 5% 10%;
}

.testing_capabilities_2_inner {
    border: 1px solid #1BA249;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px #000000bf;
}

.testing_capabilities_2_col_1 {
    padding: 0rem !important;
}

.testing_capabilities_2_bg_img {
    width: 100%;
    height: 100%;
    background-image: url(../img/chemist-works-in-a-lab-bg.webp);
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    overflow: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff;
}

.testing_capabilities_2_bg_img h3 {
    font-size: 300%;
    font-weight: 600;
}

.testing_capabilities_2_col img {
    width: 100%;
}

.testing_capabilities_2_col_2 {
    padding: 2rem !important;
}

.testing_capabilities_2_col_2 p {
    text-align: justify;
}


@media only screen and (max-width: 768px) {
    .testing_capabilities_2_bg_img h3 {
        font-size: 200%;
        font-weight: 600;
    }

    .testing_capabilities_2_col_2 {
        padding: 1rem !important;
    }

    .testing_capabilities_2 {
        padding: 5% 3%;
    }
}


.timeline {
    width: 100%;
    height: max-content;
    padding: 0 10%;
}

.timeline h2 {
    font-weight: 600;
    font-size: 300%;
    text-align: center;
    color: #1BA249;
    text-shadow: 0px 5px 5px #0000003a;
}

.timeline p {
    text-align: center;
    color: #1BA249;
    font-size: 200%;

}

.timeline img {
    width: 100%;
}


@media only screen and (max-width: 992px) {
    .timeline_col1 img {
        display: none;
    }

    .timeline_col3 img {
        display: block;
    }
}

.timeline_col3 img {
    display: none;
}

@media only screen and (max-width: 768px) {
    .timeline {
        padding: 0 2%;
    }

    .timeline_col2 img {
        display: none;
    }

    .timeline_col3 img {
        display: block;
    }

    .timeline h2 {
        font-size: 150%;
    }

    .timeline p {
        font-size: 100%;

    }
}








.service_search {
    width: 100%;
    height: max-content;
    padding: 10px 10px;
}

.service_search input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #17863c;
    outline: none;
}

.search_results ul {
    list-style: none;
    padding: 0;
}

.search_results li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.search_results a {
    color: #1a0dab;
    text-decoration: none;
}

.search_results a:hover {
    text-decoration: underline;
}



.privacy-policy {
    padding: 5%;
}

.privacy-policy h1 {
    color: #1BA249;
    font-weight: bold;
    font-size: 3em;
}

.terms-and-conditions {
    padding: 5%;
}

.terms-and-conditions h1 {
    color: #1BA249;
    font-weight: bold;
    font-size: 3em;
}



.black_break_line {
    width: 100%;
    height: 1px;
    background-color: #0000003d;
    margin-bottom: 20px;
}



.sitemap {
    padding: 5%;
}

.sitemap h1 {
    color: #1BA249;
    font-weight: bold;
    font-size: 3em;
}

.sitemap ul{
    list-style-type: none;
    color: #1BA249;
}

.sitemap ul a{
    color: #000;
    text-decoration: none;
}