@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


:root {
    --thm-font: "Lato", sans-serif;
    --heading-font: "Lato", sans-serif;
    --thm-base: #21429a;
    --thm-base-rgb: 44, 62, 36;
    --thm-white: #ffffff;
    --thm-black: #000000;
    --thm-black-rgb: 0, 0, 0;
    --thm-green: #2c3e24;
    --thm-grey: #dbdcdd;
    --thm-text: #231f20;
    --thm-btn: #2c3e24;
}

* {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
/*/--------------------------------------------*/

#searchForm {
    position: relative;
}

.suggestion-list {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 1000;
    background: rgb(255 255 255 / 80%);
    padding: 10px;
    width: 100%;
    height: 200px;
    overflow-y: auto;
    border-radius: 10px 0 0 10px;
}

    .suggestion-list a span {
        border: none;
        padding: 4px 0;
        background-color: transparent;
        color: var(--thm-base);
        font-size: 12px;
        font-weight: 500;
        transition: all 0.3s;
        text-transform: uppercase;
    }

    .suggestion-list a span:hover {
        color: var(--thm-text);
    }


/*=============== SCROLL BAR ===============*/
    .suggestion-list::-webkit-scrollbar {
        width: 0.3rem;
        height: 0.2rem;
    }

    .suggestion-list::-webkit-scrollbar-track {
        background: #ffffff;
    }

    .suggestion-list::-webkit-scrollbar-thumb {
        background-color: var(--thm-base);
    }

        .suggestion-list::-webkit-scrollbar-thumb:hover {
            background-color: var(--thm-base);
            opacity: 0.8;
        }
    /*------------------------------------------*/
html {
    scroll-behavior: smooth;
    /*scroll-padding-top: 6rem;*/
}

body {
    font-family: var(--thm-font);
    color: var(--thm-text);
    font-size: 16px;
}

a,
a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 1.2;
    color: var(--thm-text);
    font-family: var(--thm-font);
    font-weight: 300;
}

.green-text {
    color: #50B748 !important;
}

.red-text {
    color: #ED1C24 !important;
}

.black-text {
    color: #231F20 !important;
}

ul {
    list-style: none;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    /* overflow: hidden; */
}

.topbar {
    background-color: var(--thm-base);
    padding: 5px 10px;
}

.top-links ul {
    display: block;
    margin-left: auto;
    text-align: end;
    margin: 0;
}

    .top-links ul li {
        display: inline-block;
        padding: 0 8px;
    }

        .top-links ul li:last-child {
            padding-right: 0;
        }

        .top-modal,
        .top-links ul li a {
            font-size: 14px;
            text-decoration: none;
            color: var(--thm-white);
            line-height: 1;
        }
        .top-links ul li a.active {
           font-weight:700;
        }
            .top-modal:hover,
            .top-links ul li a:hover {
                opacity: 0.8;
            }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}


    .nav-item .dropdown.dropdown-mega + .dropdown-menu {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-radius: 0;
        border: none;
        background-color: rgba(255, 255, 255, 0.9);
    }


.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler .hamburger-toggle {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        z-index: 11;
    }

        .navbar-toggler .hamburger-toggle .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
        }

            .navbar-toggler .hamburger-toggle .hamburger span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: var(--thm-text);
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
                left: 0px;
            }

                .navbar-toggler .hamburger-toggle .hamburger span:first-child {
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }

                .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
                    top: 50%;
                    transform: translate(0, -50%);
                }

                .navbar-toggler .hamburger-toggle .hamburger span:last-child {
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }

            .navbar-toggler .hamburger-toggle .hamburger.active span {
                position: absolute;
                margin: 0;
            }

.navbar-expand-lg .navbar-nav .nav-item a.nav-link:hover {
    color: var(--thm-base);
}

.navbar-expand-lg .navbar-nav .nav-item a.nav-link.active {
    color: var(--thm-base);
}

.navDropBox button.btn.dropdown-toggle::after {
    transition: all 0.6s linear;
}

.icons {
    display: inline-flex;
    margin-left: auto;
}

    .icons a {
        transition: all 0.2s ease-in-out;
        padding: 0.2rem 0.4rem;
        color: #ccc !important;
        text-decoration: none;
    }

        .icons a:hover {
            color: #ffffff;
            text-shadow: 0 0 30px #ffffff;
        }

.bnr-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bnr-container1 {
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
}

.content-banner {
    padding-top: 20vh;
    padding-left: 100px;
    position: relative;
    z-index: 99;
    text-align: start;
}

    .content-banner::before {
        content: "";
        width: 60px;
        height: calc(20vh + 125px);
        position: absolute;
        left: 0;
        top: 0;
        background-color: var(--thm-green);
    }
.inside-img .content-banner {
    padding-top: 10vh;
}
    .inside-img .content-banner::before {
       
        height: calc(10vh + 125px);
    }
.sec-border-abt {
    border-bottom: 20px solid #dbdcdd;
}

.content-banner h1 {
    text-transform: uppercase;
    color: var(--thm-white);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 70px;
}
.mySwiper2 .swiper-slide.swiper-slide-active .animation {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp
}

.mySwiper2 .swiper-slide.swiper-slide-active .animation-1 {
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
.bnr-bottom-icon {
    z-index: 9;
}

.content-banner h3 {
    text-transform: uppercase;
    color: var(--thm-white);
    font-size: 24px;
    font-style: italic;
    line-height: 1;
    font-weight: 500;
}

.bnr-bottom-icon {
    margin-top: -60px;
    padding-left: 80px;
    position: absolute;
}

.cls-1 {
    fill: #231f20;
}

.btn-search {
    background-color: #dbdcdd;
}

.link-more {
    font-size: 14px;
}

.main-nav .form-control {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    max-width: 150px;
    padding: 5px 10px;
}

    .main-nav .form-control::placeholder {
        color: #dee2e6;
        opacity: 1;
        /* Firefox */
    }

    .main-nav .form-control::-ms-input-placeholder {
        /* Edge 12 -18 */
        color: #dee2e6;
    }

.main-nav .nav-link {
    color: var(--thm-text);
    font-family: var(--thm-font);
    font-size: 16px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.navbar-brand img {
    width: 100%;
    max-width: 160px;
    height: auto;
}

.btn-search svg {
    width: 20px;
    height: 20px;
}

.main-nav .list-group-item {
    border: none;
    padding: 4px 0;
    background-color: transparent;
    color: var(--thm-base);
    font-size: 14px;
}

.mega-content h5 a {
    color: var(--thm-base);
    font-size: 18px;
}

    .main-nav .list-group-item:hover,
    .mega-content h5 a:hover {
        color: var(--thm-black)
    }

    .main-nav .list-group-item.active,
    .mega-content h5 a.active {
        color: var(--thm-black);
    }

.main-nav {
    transition: transform 0.4s;
}


.scroll-up .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: slideDown 0.4s ease-out;
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.abt-cont {
    padding: 60px 80px;
}

    .abt-cont .inside-abt {
        max-width: 700px;
    }

        .abt-cont .inside-abt p {
            margin-bottom: 48px;
        }

            .abt-cont .inside-abt.abt-big p,
            .abt-cont .inside-abt p.abt-first {
                font-size: 20px;
            }

            .abt-cont .inside-abt p.abt-first {
                max-width: 400px;
            }

            .abt-cont .inside-abt p span {
                color: var(--thm-base);
            }

.text-section-bg {
    background-color: var(--thm-grey);
}

.about-section {
    padding-top: 20px;
}

.product-section {
    background-color: var(--thm-grey);
}

.prodct-box {
    padding: 40px;
    background-color: var(--thm-white);
    border-radius: 10px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
    text-align: center;
    transition: 0.3s ease-in-out;
}

.prodct-content.boxes {
    border: 1px solid var(--thm-btn);
}


.prodct-content {
    text-align: left;
}

    .prodct-content p {
        margin: 16px 0px;
    }


.upper-box {
    position: relative;
}

    .upper-box::before {
        content: "";
        width: 100%;
        height: calc(2vh + 5%);
        position: absolute;
        left: 0;
        top: 0;
        background-color: var(--thm-green);
    }

.content-banner1 {
    padding-bottom: 20vh;
    padding-left: 100px;
}

    .content-banner1::before {
        content: "";
        width: 60px;
        height: calc(20vh + 72px);
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: var(--thm-green);
    }

    .content-banner1 h1 {
        text-transform: uppercase;
        color: var(--thm-white);
        font-size: 60px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 70px;
    }

    .content-banner1 h3 {
        text-transform: uppercase;
        color: var(--thm-white);
        font-size: 30px;
        font-style: italic;
        line-height: 1.2;
    }

.icons-bg-section {
    background-color: var(--thm-grey);
}

.footer-section {
    background-color: var(--thm-base);
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-text p {
    color: var(--thm-white);
    margin-bottom: 0;
}

    .footer-text p.copy-text {
        font-size: 10px;
    }

.footer-text svg {
    height: 20px;
    width: 20px;
    fill: #ffffff;
    margin-left: 10px;
}

.slide-img {
    padding: 80px 0px;
}

.mySwiper .slide-img {
    padding: 80px;
}

.swiper.mySwiper {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
}

    .mySwiper .swiper-slide img {
        display: block;
        margin: 0 auto;
    }

.mySwiper.swiper {
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0;
}

.mySwiper .slides-box {
    height: 100%;
    border: 1px solid #dbdcdd;
    padding: 20px;
    border-right: none;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
}

.slides-box p {
    margin-top: 15px;
}

.mySwiper .swiper-slide:last-child {
    border-right: 1px solid #dbdcdd;
}

.slide-img .swiper-button-prev {
    left: -40px;
}

    .slide-img .swiper-button-prev:after,
    .slide-img .swiper-button-next:after {
        color: #2c3e24;
        font-size: 25px;
        background-color: #cccccc;
        border-radius: 50%;
        padding: 5px 12px;
        font-weight: 600;
    }

.slide-img .swiper-button-next {
    right: -40px;
}


.mySwiper .swiper-slide:hover {
    z-index: 10;
}

    .mySwiper .swiper-slide:hover .slides-box {
        background-color: #dbdcdd;
        transform: scale(1.1);
        transition: 0.5s;
    }

.slides-box h5 {
    font-size: 18px;
}

.clientswiper .swiper-wrapper {
    transition-timing-function: linear;
}

.abt-img1 img {
    padding-bottom: 10px;
}

.abt-content p {
    margin-bottom: 1rem;
}


.product-no {
    background-color: var(--thm-green);
    padding: 50px 45px;
}

.pro-content {
    padding-top: 16px;
    text-align: center;
    font-size: 18px;
}

.prodct-box.product-no sup {
    font-size: 50px;
    color: var(--thm-white);
    font-weight: 300;
    vertical-align: super;
    top: -10px;
    font-weight: 700;
}

.prodct-box.product-no p {
    color: var(--thm-green);
    font-size: 120px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--thm-white);
    font-weight: 700;
}

p.culture-text {
    line-height: 1.4;
}

.sec-border {
    border-bottom: 3px solid var(--thm-green);
}

.row-spaces {
    padding-top: 100px;
}

p.footrprint-text {
    font-size: 20px;
}

.footrprint-text {
    min-height: 100px;
}

p.footrprint-text span {
    color: var(--thm-base);
}

.product-sections .abt-cont {
    padding-top: 60px;
}

.prodct-content.boxes:hover {
    background-color: var(--thm-green);
    color: var(--thm-white);
    transition: 0.5s;
}

    .prodct-content.boxes:hover .footrprint-text {
        color: var(--thm-white) !important;
        transition: 0.5s;
    }

        .prodct-content.boxes:hover .footrprint-text span {
            color: var(--thm-white);
            transition: 0.5s;
        }

    .prodct-content.boxes:hover a {
        color: var(--thm-white);
        transition: 0.5s;
    }

.prudct-col .prodct-box:hover {
    margin-top: -15px;
    transition: 0.5s;
}

ul.instructions-list {
    padding-left: 0px;
}

    ul.instructions-list li {
        display: flex;
        position: relative;
        align-items: center;
        padding-bottom: 5px;
    }

        ul.instructions-list li span {
            margin-right: 15px;
        }

.insturctor-text p:first-child {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.insturctor-text p:last-child {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
}


.instruct-sec {
    padding-top: 40px;
    padding-bottom: 40px;
}

.instuctions1 {
    padding-left: 0px;
}

    .instuctions1 p {
        font-size: 16px !important;
        margin-bottom: 0px !important;
    }

    .instuctions1 li span svg {
        height: 10px;
        width: 10px;
        color: var(--thm-black);
        margin-right: 15px;
    }

    .instuctions1 li {
        display: flex;
        padding: 3px;
    }


.imgBox p {
    text-align: center;
    padding-top: 10px;
    line-height: 1.4;
}

.imgBox {
    text-align: center;
}

.modal-header {
    align-items: start;
    justify-content: space-between;
    padding-bottom: 0px;
    border-bottom: none;
    max-height: 80px;
}


.colse-sec span {
    color: var(--thm-base);
}

.colse-sec button.btn-close {
    color: var(--thm-base) !important;
}

img.cross-img {
    margin-left: 10px;
}


p.model-text {
    margin-bottom: 0px;
}


.Footprint-model ul {
    padding-left: 0px;
}

.Footprint-model p {
    font-weight: 600;
    font-size: 15px;
}

.Footprint-model ul li {
    font-size: 14px;
}

.model-image {
    position: relative;
}

.footprint-no {
    position: absolute;
    top: 10%;
    right: 2%;
}

    .footprint-no ul {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

        .footprint-no ul li {
            display: inline-flex;
            padding-right: 8px;
            align-items: center;
            font-size: 12px;
        }

.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    background-color: #79B031;
}

.footprint-no ul li:nth-child(2) .dot {
    background-color: #8dc63f;
}

.footprint-no ul li:nth-child(3) .dot {
    background-color: #c6ed88;
}

.ul-item-list {
    display: flex;
    justify-content: space-between;
}

.parthnership-accros {
    text-align: center;
    padding-bottom: 60px;
}

.address-model3:last-child {
    border-bottom: none;
}

.address-model3 {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--thm-black);
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
}

    .address-model3 p {
        margin-bottom: 0px;
        padding-bottom: 8px;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 500;
    }

.parthnership-accros img {
    padding: 10px 0px;
}

.space-heading {
    margin-bottom: 20px !important;
}

.services-img {
    border-radius: 50%;
    padding: 20px;
}

    .services-img img {
        height: 100px;
        width: 100px;
    }

.services-cont .services-main:nth-child(odd) {
    padding-right: 80px;
}

.services-cont .services-main:nth-child(even) {
    padding-left: 80px;
}

.services-box {
    border: 1px solid var(--thm-green);
    border-radius: 65px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.services-cont .services-main:nth-child(odd) .services-box {
    padding: 20px 100px 20px 40px;
    text-align: end;
}

.services-cont .services-main:nth-child(even) .services-box {
    padding: 20px 40px 20px 100px;
    text-align: start;
}

.services-text p {
    margin-bottom: 8px;
}

.services-img {
    position: absolute;
    background: var(--thm-green);
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    width: fit-content;
    margin-left: auto;
    padding: 30px;
    border-radius: 50%;
}

.services-cont .services-main:nth-child(odd) .services-box .services-img {
    right: -80px;
}

.services-cont .services-main:nth-child(even) .services-box .services-img {
    left: -80px;
}

.services-text p:first-child {
    font-weight: 600;
}

.services-text ul {
    padding-left: 18px;
    padding-top: 15px;
}


    .services-text ul li {
        list-style: disc;
        font-weight: 300;
    }


.bg-service {
    border-bottom: 50px solid #f4f4f4;
}

textarea.address-text {
    width: 100%;
}

.mt-resume-input {
    margin-top: 32px;
}

.carrers-form label {
    font-size: 18px;
    font-weight: 400;
}

.carrers-form input,
textarea {
    padding: 12px;
}

    .carrers-form input:focus {
        box-shadow: none;
        outline: 0;
        border-color: unset;
        border: var(--bs-border-width) solid var(--bs-border-color);
    }

.carrers-form textarea {
    border: var(--bs-border-width) solid var(--bs-border-color);
}

    .carrers-form textarea:focus {
        box-shadow: none;
        outline: 0;
        border-color: unset;
        border: var(--bs-border-width) solid var(--bs-border-color);
    }

.carres-text {
    font-size: 20px;
    font-weight: 400;
}
.carrers-text h4, .carrers-text h5 {
    font-weight: 500;
}
svg:not(:root) {
    overflow: hidden;
}

.main-wrapper1 {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

#file-upload-name {
    margin: 4px 0 0 0;
    font-size: 12px;
}

.upload-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 40px auto 0;
    position: relative;
    cursor: pointer;
    background-color: #DBDCDD;
    padding: 8px 10px;
    overflow: hidden;
    transition: 0.2s linear all;
    color: #000000;
    padding: 20px;
    font-weight: 400;
    border-radius: 5px;
    text-align: center;
}

    .upload-wrapper input[type="file"] {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        opacity: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
        z-index: 1;
    }

    .upload-wrapper > svg {
        width: 50px;
        height: auto;
        cursor: pointer;
    }

    .upload-wrapper.success > svg {
        transform: translateX(-200px);
    }

    .upload-wrapper.uploaded {
        transition: 0.2s linear all;
        width: 60px;
        border-radius: 50%;
        height: 60px;
        text-align: center;
    }

    .upload-wrapper .file-upload-text {
        position: absolute;
        opacity: 1;
        visibility: visible;
        transition: 0.2s linear all;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .upload-wrapper.uploaded .file-upload-text {
        text-indent: -999px;
        margin: 0;
        justify-content: center;
    }

.file-success-text {
    opacity: 0;
    transition: 0.2s linear all;
    visibility: hidden;
    transform: translateX(200px);
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .file-success-text svg {
        width: 25px;
        height: auto;
    }

    .file-success-text span {
        margin-left: 15px;
    }

.upload-wrapper.success .file-success-text {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.upload-wrapper.success.uploaded .file-success-text {
    opacity: 1;
    visibility: visible;
    transform: none;
}

    .upload-wrapper.success.uploaded .file-success-text span {
        display: none;
    }

.upload-wrapper .file-success-text circle {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    transition: 1s linear all;
    transition-delay: 1.4s;
}

.upload-wrapper.success .file-success-text circle {
    stroke-dashoffset: 0;
}

.upload-wrapper .file-success-text polyline {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    transition: 1s linear all;
    transition-delay: 2s;
}

.upload-wrapper.success .file-success-text polyline {
    stroke-dashoffset: 0;
}

.upload-wrapper.success .file-upload-text {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}




.address-model3 span {
    color: #6ac940;
    font-weight: 700;
}

    .address-model3 span.vl-text {
        color: var(--thm-base);
        font-weight: 600;
    }

.contact-text p {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-text1 p {
    color: var(--thm-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.client-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: #F0F5F8;
}

.infra-upeer-text p {
    font-size: 20px;
}

.infra-upeer-text1 h5 {
    font-size: 24px;
    padding-bottom: 10px;
    font-weight: 400;
}

.download-sec {
    height: 300px;
}

/* image hover effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    cursor: pointer;
    color: var(--thm-white);
    margin-bottom: 25px;
}

    .card p {
        color: #ffffff;
    }

    .card .profile {
        border-radius: 10px;
        transition: 0.2s;
    }

    .card:hover .profile {
        transform: scale(1.4);
        border-top-right-radius: 50px;
        border-top-left-radius: 50px;
    }

    .card .content {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .card .content .back {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(var(--thm-base-rgb), 0.9);
            transition: 1s;
            z-index: 1;
            padding: 10px;
        }

.from-left {
    top: 0;
    left: -100%;
}

.card:hover .content .from-left {
    left: 0%;
}

.from-bottom {
    top: 100%;
    left: 0;
}

.card:hover .content .from-bottom {
    top: 0%;
}

.from-right {
    top: 0%;
    right: -100%;
}

.card:hover .content .from-right {
    right: 0;
}

.card .content .back h3 {
    font-size: 15px;
    letter-spacing: 2px;
}

.card .content .back .tem-img {
    border-radius: 100%;
}

.card .content .back .des {
    font-size: 13px;
    padding: 20px 0px;
}

.card .back ul {
    margin: 0;
    padding: 0;
}

    .card .back ul li {
        font-size: 16px;
        font-weight: 300;
        position: relative;
        padding: 0 0px 6px 20px;
    }

        .card .back ul li::before {
            content: "";
            position: absolute;
            background-color: var(--thm-white);
            height: 1px;
            width: 6px;
            top: 13px;
            left: 0;
        }

.front {
    position: relative;
}

    .front img {
        min-height: 650px;
        object-fit: cover;
    }

.machine-heading {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Container styles */
.plant-images div {
    position: relative;
    width: 100%;
    margin: 0 0 0 25px;
    padding: 0;
}

    .plant-images div:first-child {
        margin-left: 0;
    }

.plant-section-bg {
    background-color: var(--thm-grey);
}

/* Span styles */
.plant-images div span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #231f20;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: .3s ease-in-out;
    opacity: 1;
    z-index: 8;
    transform: translateY(-50%);
    font-weight: 600;
}

/* Figure styles */
.plant-images figure {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

/* Image styles */
.hoverplant figure img {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .3s ease-in-out;
    opacity: 0.5;
}

/* Hover effects */
.hoverplant:hover figure img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}



.hoverplant:hover span {
    top: 100%;
    opacity: 1;
    font-weight: 500;
    transform: translateY(0%);
}


.inside-abt h2 {
    font-weight: 500;
    font-size: 24px;
    color: var(--thm-black);
    margin-bottom: 1rem;
}

    .inside-abt h2 span {
        color: var(--thm-base);
    }

p.testing-text {
    font-weight: 500;
}

.urs-container {
    background-color: var(--thm-green);
    padding-top: 80px;
}

.urs-container1 {
    background-color: var(--thm-green);
}

.salt-lab-text {
    padding: 30px;
    padding-right: 10px;
}


.quality-column {
    padding: 0px 30px 30px;
}

.quality-text h2 {
    color: #ffffff;
}

.quality-assurance-img {
    height: 100%;
    object-fit: cover;
}

.urs-logo {
    margin-top: -150px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.container-fluid.abt-cont.g-0.quality-container {
    padding-bottom: 0px;
}

.container-fluid.abt-cont.g-0.quality-container1 {
    padding: 0px 80px;
}


.quality-text p {
    color: var(--thm-white);
    margin-bottom: 10px;
}

.testing-content h5 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
}


hr.testing-divider {
    margin: 20px 0px;
    border-bottom: 2px solid var(--thm-green);
}

.testing-img {
    padding: 20px;
    background-color: var(--thm-white);
}


ul.list-svg1 {
    margin: 0;
    padding: 0;
}

    ul.list-svg1 li {
        font-size: 16px;
        font-weight: 300;
        position: relative;
        padding: 0 0px 6px 20px;
        color: var(--thm-white);
    }

        ul.list-svg1 li::before {
            content: "";
            position: absolute;
            background-color: var(--thm-white);
            height: 1px;
            width: 6px;
            top: 13px;
            left: 0;
        }

.testing-content ul.list-svg1 li {
    color: var(--thm-text);
}

    .testing-content ul.list-svg1 li::before {
        background-color: var(--thm-text);
    }

.testing-content h6 {
    font-weight: 300;
}

.crs-bnr::before {
    height: calc(25vh + 130px);
    right: 0;
    left: auto;
}

.client-var {
    padding: 40px !important;
}

.model-csr {
    padding: 0px;
}

.model-header1 {
    padding: 15px;
    background-color: #DBDCDD;
    display: flex;
    justify-content: end;
}

.csr-sec {
    background-color: #dbdcdd;
}

.inside-csr {
    max-width: 100%;
}

    .inside-csr p {
        font-size: 24px;
    }

.csr-cont {
    padding: 0px;
}

.csr-text p {
    margin-bottom: 0px !important;
}

.csr-row {
    align-items: center;
}

.csr-model-body {
    padding: 0px 20px;
    border-bottom: 20px solid #dbdcdd;
}

.csr-window {
    padding: 0px 100px;
}

.pro-row {
    margin-bottom: 10px;
}

.prodct-btn {
    background-color: var(--thm-grey);
    padding: 5px 40px;
    position: relative;
    text-align: center;
}

.pro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100%;
    background-color: #21429A;
    padding: 5px;
    text-align: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 1.2;
}

p.prodct-contents {
    color: var(--thm-base);
}

p.prodct-contents {
    font-size: 18px;
}

h2.prodct-contents {
    font-size: 24px;
    color: var(--thm-base);
    padding-left: 0;
}

.prodct-btn {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.prodct-btn1 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}


.prodct-btn:hover,
.prodct-btn.active {
    background-color: var(--thm-btn);
    height: 100%;
    color: var(--thm-white);
    transition: 0.5s ease;
}

    .prodct-btn:hover .prodct-btn1,
    .prodct-btn.active .prodct-btn1 {
        display: inline-block;
        z-index: 0;
        background-color: transparent;
    }

    .prodct-btn:hover .pro-text,
    .prodct-btn.active .pro-text {
        background-color: transparent;
    }

    .prodct-btn:hover .pro-btn img {
        position: relative;
    }

    .prodct-btn:hover .pro-btn img,
    .prodct-btn.active .pro-btn img {
        z-index: 0;
        opacity: 0;
    }

.product-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

    .product-nav .product-col {
        position: relative;
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        padding-bottom: 8px;
    }

.tab-list.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--thm-white) !important;
    color: #000000 !important;
}

.tab-list.nav-pills .nav-link.prodct-contents.pro-cont.active,
.nav-pills .show > .nav-link {
    background-color: var(--thm-white) !important;
    color: var(--thm-base) !important;
}

.tab-list.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--thm-white) !important;
    color: #000000 !important;
}

ul.tab-list {
    display: block;
}

.specific-list table tr td {
    width: 50%;
    vertical-align: top;
    font-size: 16px;
    font-weight: 300;
    color: var(--thm-text);
}

    .specific-list table tr td:first-child {
        width: 30% !important;
        padding-right: 20px;
    }

.specific-list table tr {
    border-bottom: 1px solid #edeaea;
}

.features-cont {
    position: relative;
    padding-bottom: 30px;
}

    .features-cont p {
        margin-bottom: 10px;
        font-size: 18px;
    }

        .features-cont p:first-child {
            color: var(--thm-base);
        }


    .features-cont::before {
        content: "";
        position: absolute;
        background-color: var(--thm-black);
        height: 1px;
        width: 6px;
        top: 13px;
        left: 0;
    }

.map-img img {
    padding-top: 100px;
    border-radius: 8px;
}

.top-model {
    background-color: #ffffff !important;
}



.csr-cont h4 {
    text-align: center;
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 20px;
}

.scanner-img {
    display: flex;
    justify-content: space-around;
}

.scanner p {
    text-align: center;
    font-size: 20px;
    padding: 10px 0px;
}

.mdl-cont {
    padding: 12px;
}

.custmr-modl {
    background-color: var(--thm-grey) !important;
}

.custmr-dialog {
    width: 80%;
}

.customer-map-list ul {
    padding-left: 0px;
}

.customer-map-list p {
    font-size: 20px;
    font-weight: 600;
}
    .customer-map-list p a {
        text-decoration: none;
        color: var(--thm-text);
        white-space: nowrap;
    }
        .customer-map-list p a:hover {
            color: var(--thm-base);
        }
.customer-map-list ul li {
    font-size: 20px;
    padding-bottom: 8px;
    font-weight: 600;
}

    .customer-map-list ul li span {
        margin-right: 10px;
    }

.bredcrumb-text .active a {
    color: var(--thm-black);
}

ol.breadcrumb {
    justify-content: right;
}

.bredcrumb-cont {
    padding: 10px 40px;
}

.tabs-cont p {
    color: var(--thm-black) !important;
}

.tabs-cont {
    padding: 0 0px 6px 20px;
    font-size: 16px;
    font-weight: 300;
    color: var(--thm-text);
}

.prodct--medium-btn {
    padding: 40px;
}

.space-icon {
    margin-top: 25px;
}

.scanner p {
    margin-bottom: 0px;
}

.modal-close {
    color: var(--thm-base);
    border: none;
    background-color: transparent;
}

.page-section {
    padding: 60px 80px;
}

.timeline {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.year-box {
    border: 2px solid var(--thm-base);
    border-right: none;
    padding: 6px;
    background-color: var(--thm-base);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}



    .year-box p {
        font-weight: 600;
        font-size: 30px;
        color: var(--thm-white);
        /* cursor: pointer; */
    }

.timeline--horizontal .timeline__item:nth-child(even) .year-box {
    top: 0;
    background-color: var(--thm-white);
}

    .timeline--horizontal .timeline__item:nth-child(even) .year-box p {
        color: var(--thm-base);
    }

.year-box::after,
.year-box::before {
    content: "";
    height: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 0;
}

.year-box::after {
    border-right: 23px solid transparent;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid var(--thm-base);
    left: 99%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    z-index: 2;
}


.year-box::before {
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 26px solid var(--thm-base);
    left: 100%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    z-index: 1;
}

.timeline--horizontal .timeline__item:nth-child(even) .year-box::after {
    border-left: 24px solid var(--thm-white);
}

.timeline__item:after {
    content: none;
}

.timeline__content p {
    font-weight: 600;
    color: #231f20;
    font-size: 14px;
}

.timeline__content:after,
.timeline__content:before {
    content: none !important;
}

.timeline-cont:after {
    content: "";
    background-image: url(../images/time-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.timeline--horizontal .timeline__item:nth-child(even) .timeline-cont:after {
    bottom: auto;
    top: -45px;
    transform: translateX(-50%) rotate(0deg);
}

.timeline__content {
    background-color: transparent;
    border: none;
    padding: 0;
}

.page-section .timeline--horizontal .timeline__item {
    padding: 0 0 5rem;
}

    .page-section .timeline--horizontal .timeline__item:nth-child(even) {
        padding: 5rem 0 0;
    }



.container-number {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    overflow-x: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.number-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

    .number-col::before {
        content: "";
        background-image: url(../images/bg-1.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 700px;
        height: 257px;
        display: inline-block;
        position: absolute;
        top: -47px;
        z-index: 1;
    }

.inside-number {
    padding: 10px;
    width: 130px;
    height: 130px;
    background-color: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

    .inside-number h3 {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 30px;
        line-height: 110px;
        color: rgba(255, 255, 255, 0.8);
    }

.cls-1 {
    isolation: isolate;
}

.cls-2 {
    fill: #21429a;
}

.cls-3 {
    mix-blend-mode: multiply;
}

.cls-4 {
    font-size: 30px;
    fill: #231f20;
    font-family: var(--thm-font);
    font-weight: 300;
}

.cls-5 {
    letter-spacing: -0.02em;
}

.cls-6 {
    letter-spacing: 0em;
}

.cls-7 {
    letter-spacing: -0.02em;
}

.cls-8 {
    font-size: 50px;
    fill: #a6c3f7;
    font-family: var(--thm-font);
    font-weight: 800;
}

span.prodct-text {
    color: var(--thm-base);
}

.footer-section img {
    width: 100%;
    max-width: 120px;
    height: auto;
}

.instructions-list span img {
    width: 100%;
    height: 75px;
}

img.about-img {
    height: 100%;
    object-fit: cover;
}

.contact-info {
    background-color: var(--thm-green);
    padding: 15px;
}

.contact-text p {
    font-size: 18px;
    color: #ffffff;
}

.contact-text {
    margin-bottom: 30px;
}

    .contact-text .cont-heading {
        font-weight: 600;
    }

.contact-btn {
    background: var(--thm-green);
    width: fit-content;
    padding: 8px 25px;
}

.hidden {
    display: none;
}

.client-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: #f0f5f8;
}

.client-table.table > :not(caption) > * > * {
    background-color: #fff;
}

.client-table.table tr td {
    width: 50%;
    padding: 12px;
}

    .client-table.table tr td:nth-child(1) {
        width: 25%;
    }

    .client-table.table tr td:nth-child(2) {
        width: 25%;
    }

.client-table.table thead th {
    background-color: #005080;
    color: #ffffff;
    padding: 15px;
}

    .client-table.table thead th select {
        padding: 10px;
        background: #003d62;
        border: 1px solid #003d62;
        color: #ffffff;
    }

.pagination {
    margin-top: 15px;
}

    .pagination button {
        border: 1px solid #f0f5f8;
        padding: 5px 10px;
        margin-right: 8px;
        border-radius: 5px;
    }

        .pagination button.active {
            background: #005080;
            border: none;
            color: #ffffff;
        }

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.machine-heading h4 {
    font-size: 18px;
}



.csrList {
    padding: 20px;
}

    .csrList ul {
        padding-left: 0px;
    }

        .csrList ul li {
            list-style: none;
            padding: 8px 0px;
            font-size: 16px;
            display: flex;
            cursor: pointer;
        }

            .csrList ul li a {
                color: var(--thm-black);
                justify-content: start;
                display: flex;
            }

            .csrList ul li span {
                margin-right: 10px;
            }

                .csrList ul li span svg {
                    height: 20px;
                    width: 20px;
                }

.csr-container {
    display: flex;
    margin-bottom: 20px;
}


.csr-images1 {
    margin-right: 20px;
    width: 170px;
    background-color: var(--thm-btn);
    padding: 20px;
    height: 170px;
    text-align: center;
    border-radius: 50%;
}

.csr-texts {
    width: 80%;
}

    .csr-texts ul li {
        font-size: 16px;
        font-weight: 300;
        position: relative;
        padding: 0 0px 6px 20px;
    }

.csr-images1 img {
    width: 100%;
    max-width: 130px;
    height: 130px;
}

.csr-texts h2 {
    font-size: 24px;
}

.csr-texts ul li::before {
    content: "";
    position: absolute;
    background-color: var(--thm-black);
    height: 1px;
    width: 6px;
    top: 13px;
    left: 0;
}

.csr-main-container {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    /* Ensures it takes full width of the screen */
}

.csrList {
    position: sticky;
    top: 20px;
    /* Adjust this value based on your layout */
    overflow-y: auto;
    /* Enables vertical scrolling if content exceeds height */
    padding-right: 15px;
    /* Add padding for a better appearance */
    background-color: var(--thm-white);
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.csr-container {
    margin-bottom: 20px;
    padding: 20px;
}

.csr-text-sec {
    background-color: var(--thm-grey);
}

p.investors-text a span {
    color: var(--thm-base);
}

p.investors-text a {
    color: var(--thm-black);
}

p.investors-text {
    margin-bottom: 0px;
}

.investors-box {
    border: 1px solid var(--thm-btn);
}

.investors-box {
    padding: 30px;
    text-align: center;
    border-radius: 30px;
    background-color: var(--thm-white);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
    text-align: center;
    transition: 0.3s ease-in-out;
}

    .investors-box:hover {
        background-color: var(--thm-green);
        transition: 0.5s;
        margin-top: -15px;
    }

        .investors-box:hover a span {
            color: var(--thm-white);
            transition: 0.5s;
        }

        .investors-box:hover p a {
            color: var(--thm-white);
            transition: 0.5s;
        }

.csr-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

a.csr-btn {
    background-color: var(--thm-base);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--thm-base);
}

    a.csr-btn:hover {
        background-color: var(--thm-white);
        color: var(--thm-base);
        transition: 0.5s;
    }


.swiper {
    width: 100%;
    height: 100%;
}

.main-bnr .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .main-bnr .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dots .swiper-button-next:after {
    font-size: 35px;
    color: var(--thm-btn);
}

.dots .swiper-button-prev:after {
    font-size: 35px;
    color: var(--thm-btn);
}

.dots .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--thm-btn);
}

.main-nav .nav-link.toggle-btn {
    padding-right: 5px !important;
}

button.btn.dropdown-toggle {
    padding-left: 0px;
}

.main-nav .btn-check:checked + .btn,
.main-nav .btn.active,
.main-nav .btn.show,
.main-nav .btn:first-child:active,
.main-nav :not(.btn-check) + .btn:focus {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border: none !important;
}

.main-nav .btn.dropdown-toggle.active {
    color: var(--thm-base);
    border: none;
    outline: 0;
}

.navDropBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-text a {
    text-decoration: none;
    color: var(--thm-white);
}

.mobile-topbar {
    display: none;
}

.top-nav.w-100 {
    display: flex;
    flex-wrap: wrap;
}

.btn.btn-search:hover {
    border: 1px solid #dee2e6;
    transition: 0.5s;
}

.timeline-nav-button {
    border: 2px solid #000;
}

    .timeline-nav-button:disabled {
        opacity: 1;
    }

.timeline-nav-button--next:before, .timeline-nav-button--prev:before {
    filter: invert(1);
    /* filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(180deg) brightness(100%) contrast(100%); */
}

.top-nav .btn-search {
    padding: 1px 5px 5px 5px;
}

#Partnershipacross .modal-header {
    border-top: 8px solid var(--thm-base);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#Partnershipacross .modal-content {
    border-radius: 0;
    background-image: url('../images/partnership-bottom-image.png');
    background-repeat: no-repeat;
    background-size: 70%;
    background-position-y: bottom;
    background-position-x: left;
}

#Partnershipacross .modal-body h3 {
    margin-top: -65px;
    color: var(--thm-base);
    margin-bottom: 60px;
    font-weight: 700;
}

#Partnershipacross .modal-close {
    position: absolute;
    right: 12px;
    z-index: 99;
}
ul.list-openings {
    margin: 0;
    padding: 0;
}

ul.list-openings li {
        font-size: 20px;
        font-weight: 300;
        position: relative;
        padding: 0 0px 6px 20px;
        color: var(--thm-text);
    }
ul.list-openings li::before {
            content: "";
            position: absolute;
            background-color: var(--thm-text);
            height: 1px;
            width: 6px;
            top: 13px;
            left: 0;

 }
    ul.list-openings.design li {
        font-size: 16px;
    }
.scrollable-content {
    height: 250px;
    overflow: hidden;
}
/* Responsive Layout */
@media (min-width: 992px) {
    .navbar-expand-lg .offcanvas {
                display: flex !important;
                flex-basis: auto;
                flex-grow: 1;
                align-items: center;
                flex-direction: row;
            }

                .navbar-expand-lg .offcanvas .offcanvas-body {
                    justify-content: space-evenly;
                    width: 100%;
                }

            .nav-item.dropnew:hover .navDropBox .dropdown.dropdown-mega + .dropdown-menu {
                display: block;
                top: calc(100% - 13px);
            }

            .navDropBox:hover button.btn.dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }

        @media (max-width:1400px) {
            .content-banner {
                padding-top: 15vh;
            }

                .content-banner::before {
                    height: calc(15vh + 124px);
                }
            .inside-img .content-banner {
                padding-top: 10vh;
            }

                .inside-img .content-banner::before {
                    height: calc(10vh + 125px);
                }
            .bnr-bottom-icon img {
                width: 90px;
            }

            .main-nav .nav-link {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }

            .pro-btn img {
                height: 75px;
            }
        }

        @media (max-width:1200px) {
            .main-nav .nav-link {
                font-size: 14px;
            }

            .input-group {
                /*max-width: 200px;*/
                width: 100%;
                justify-content: flex-end;
            }

            .top-modal,
            .top-links ul li a {
                font-size: 12px;
            }

            .content-banner {
                padding-top: 10vh;
                padding-left: 70px;
            }

                .content-banner::before {
                    width: 40px;
                    height: calc(10vh + 96px);
                }

                .content-banner h1 {
                    font-size: 36px;
                    margin-bottom: 40px;
                }
            .inside-img .content-banner {
                padding-top: 7vh;
            }

                .inside-img .content-banner::before {
                    height: calc(7vh + 96px);
                }
            .content-banner1 {
                padding-bottom: 10vh;
                padding-left: 70px;
            }

                .content-banner1::before {
                    width: 40px;
                    height: calc(10vh + 72px);
                }

            .product-no {
                padding: 30px 30px;
            }

            .prodct-box.product-no p {
                font-size: 80px;
            }

            .prodct-box.product-no sup {
                font-size: 36px;
            }

            .machine-heading h4 {
                font-size: 14px;
            }

            .main-nav .form-control {
                max-width: 200px;
            }

            .suggestion-list {
                width: 60%;
            }

            .main-cont {
                padding-top: 100px;
            }

            .suggestion-list {
                background: rgb(255 255 255 / 100%);
            }
        }

        @media (max-width:992px) {
            .main-nav .nav-link {
                font-size: 15px;
                padding-left: 0px !important;
                padding-right: 5px !important;
            }

            .mega-content h5 a {
                color: var(--thm-base);
                font-size: 14px;
            }

            .main-nav .list-group-item {
                font-size: 12px;
            }

            .main-nav .dropdown-menu {
                padding-top: 0;
                padding-bottom: 0;
            }

            .topbar {
                display: none;
            }

            .slide-img {
                padding: 80px 30px;
            }

                .slide-img .swiper-button-prev:after,
                .slide-img .swiper-button-next:after {
                    font-size: 14px;
                    width: 25px;
                    height: 25px;
                    padding: 6px 9px;
                }

                .slide-img .swiper-button-prev {
                    left: -30px;
                }

                .slide-img .swiper-button-next {
                    right: -30px;
                }

            .product-no {
                padding: 15px;
            }

            .prodct-box.product-no p {
                font-size: 60px;
            }

            .prodct-box.product-no sup {
                font-size: 24px;
            }

            .urs-logo {
                margin-top: -120px;
            }

                .urs-logo img {
                    width: 80px;
                }

            .csr-window {
                padding: 0px 0px;
            }

            .product-nav .product-col {
                -ms-flex: 0 0 33.33%;
                flex: 0 0 33.33%;
                max-width: 33.33%;
            }

            .testing-img {
                margin-bottom: 1rem;
            }

            .testing-content h5 {
                margin-bottom: 8px;
            }

            .abt-cont {
                padding: 40px;
            }

            .product-sections .abt-cont {
                padding-top: 40px;
            }

            .hoverplant.plant-images {
                padding-bottom: 72px;
            }

            .container-fluid.abt-cont.g-0.quality-container1 {
                padding: 0px 0px;
            }

            .urs-container1 {
                padding: 40px;
            }

            .quality-column {
                padding: 0px 40px 40px;
            }

            .container-fluid.abt-cont.g-0.quality-container {
                padding: 0px;
            }

            .abt-cont .inside-abt {
                max-width: 100%;
            }

            .prudct-col {
                padding-bottom: 24px;
            }

            .imgBox {
                margin-bottom: 20px;
            }

            .csrList {
                margin-bottom: 25px;
            }

            .space-icon {
                margin-top: 60px;
            }

            .main-cont {
                padding-top: 100px;
            }

            .dots .swiper-button-next:after {
                font-size: 25px;
            }

            .dots .swiper-button-prev:after {
                font-size: 25px;
            }

            .upload-wrapper {
                margin: 20px auto 0;
            }

            .navbar-nav li.nav-link {
                border-bottom: 1px solid var(--thm-base);
            }

            .button.btn.dropdown-toggle.active:focus {
                border: none;
                outline: 0;
            }

            ul.navbar-nav li {
                border-bottom: 1px solid #21429a85;
            }

            .navDropBox button.btn.dropdown-toggle[aria-expanded="true"]::after {
                transform: rotate(180deg);
                transition: all 0.6s linear;
            }

            .main-nav .offcanvas-body form.d-flex {
                width: 100%;
                margin-top: 20px;
            }

                .main-nav .offcanvas-body form.d-flex .input-group {
                    max-width: 100%;
                }

            .navbar .offcanvas-body form.d-flex .form-control {
                max-width: 100%;
                width: calc(100% - 53px);
            }

            .mobile-topbar {
                display: block;
                margin-top: 40px;
                background-color: unset;
                color: var(--thm-black);
                padding: 0px;
            }

            .top-modal,
            .top-links ul li a {
                color: var(--thm-black);
            }

            .top-links ul li {
                display: block;
                padding: 4px 0px;
                position: relative;
            }

            .download a {
                position: relative;
            }

                .download a::after {
                    position: absolute;
                    content: "";
                    top: 20px;
                    left: 0;
                    height: 1px;
                    width: 20px;
                    background-color: var(--thm-base);
                }


            .top-links ul li::after {
                position: absolute;
                content: "";
                top: 30px;
                left: 0;
                height: 1px;
                width: 20px;
                background-color: var(--thm-base);
            }

            .top-links ul {
                text-align: start;
                padding-left: 0px;
            }

            .top-nav.w-100 {
                display: block;
            }

            .parthnership-accros {
                padding-bottom: 20px;
            }

            #Partnershipacross .modal-content {
                background-size: 100%;
            }

            #Partnershipacross .modal-body h3 {
                margin-bottom: 26px;
            }

            .csr-texts ul {
                padding-left: 0;
            }
            .scrollable-content {
                height: auto;
            }
        }

        @media (max-width:768px) {
            p {
                font-size: 16px;
            }

            .content-banner h1 {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .content-banner h3 {
                font-size: 18px;
            }

            .content-banner {
                padding-top: 10vh;
                padding-left: 40px;
            }

                .content-banner::before {
                    width: 20px;
                    height: calc(10vh + 57px);
                }
            .inside-img .content-banner {
                padding-top: 7vh;
            }

                .inside-img .content-banner::before {
                    height: calc(7vh + 57px);
                }
            .content-banner1 h3 {
                font-size: 20px;
            }

            .content-banner1 {
                padding-bottom: 10vh;
                padding-left: 40px;
            }

                .content-banner1::before {
                    width: 20px;
                    height: calc(10vh + 52px);
                }

            .abt-cont {
                padding: 40px 40px;
            }

            .row-spaces {
                padding-top: 40px;
            }

            .abt-cont .inside-abt.abt-big p,
            .abt-cont .inside-abt p.abt-first {
                font-size: 20px;
            }

            .inside-csr p {
                font-size: 20px;
            }

            .bnr-bottom-icon {
                margin-top: -24px;
                padding-left: 40px;
            }

                .bnr-bottom-icon img {
                    width: 65px;
                }

            .abt-cont .inside-abt p {
                margin-bottom: 20px;
            }

            .prodct-box {
                padding: 20px;
            }

            .main-bnr-img,
            .metro-bottom-img {
                min-height: 50vh;
                object-fit: cover;
                object-position: center;
            }

            .inside-bnr {
                min-height: 35vh;
                object-fit: cover;
                object-position: center;
            }

            .slide-img {
                padding: 15px 30px;
            }

            .customer-map-list ul li {
                font-size: 16px;
            }

            .customer-map-list p {
                font-size: 16px;
            }

            .pro-content {
                padding-top: 10px;
                font-size: 16px;
            }

            .services-cont .services-main:nth-child(odd) {
                padding-right: 0px;
                padding-top: 40px;
            }

            .services-cont .services-main:nth-child(even) {
                padding-left: 0px;
                padding-top: 40px;
            }

            .services-img {
                padding: 20px;
            }

            .services-box {
                margin-bottom: 20px;
                border-radius: 16px;
            }

            .services-cont .services-main:nth-child(even) .services-box {
                padding: 50px 40px;
                text-align: start;
            }

            .services-cont .services-main:nth-child(odd) .services-box {
                padding: 50px 40px 20px;
                text-align: start;
            }

                .services-cont .services-main:nth-child(odd) .services-box .services-img {
                    right: auto;
                    left: 50%;
                    transform: translateX(-50%);
                    top: -40px;
                }

            .services-cont .services-main:nth-child(even) .services-box .services-img {
                left: 50%;
                transform: translateX(-50%);
                top: -40px;
            }

            .services-img img {
                height: 40px;
                width: 40px;
            }

            h2.prodct-contents {
                font-size: 24px;
            }

            .page-section {
                padding: 40px;
            }

            .year-box p {
                font-size: 12px;
            }

            .year-box {
                top: 10px;
                left: 0;
                transform: translate(0, 0);
                padding: 2px;
            }

            .timeline__content p:last-child {
                margin-bottom: 0;
            }


            .year-box::after {
                border-right: 9px solid transparent;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-left: 10px solid var(--thm-base);
            }


            .year-box::before {
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-left: 12px solid var(--thm-base);
            }

            .timeline-cont:after {
                content: none;
            }

            .timeline--mobile:before {
                left: 55px !important;
            }

            .timeline--mobile .timeline__item {
                padding-left: 72px;
            }

            .investors-box {
                margin-bottom: 25px;
            }

            .main-cont {
                padding-top: 100px;
            }
        }

        @media (max-width:576px) {
            
            .abt-cont {
                padding: 40px 15px;
            }


            .product-sections .abt-cont {
                padding-top: 40px;
            }

            .bnr-bottom-icon {
                padding-left: 15px;
            }

            .modal-close span {
                display: none;
            }

            .space-icon {
                margin-top: 50px;
            }

            .space-heading {
                margin-bottom: 10px !important;
            }

            .bg-service {
                border-bottom: 20px solid #f4f4f4;
            }

            .product-nav .product-col {
                -ms-flex: 0 0 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }

            .pro-btn .img-fluid {
                width: 100%;
                max-width: 70px;
            }

            .quality-column {
                padding: 0px 15px 40px;
            }

            .urs-container1 {
                padding: 40px 15px;
            }

            .prudct-col {
                padding-bottom: 24px;
            }

            .page-section {
                padding: 40px 15px;
            }

            .instructions-list span img {
                height: 55px;
                width: 55px;
            }

            .footerlogo {
                width: 100%;
                margin-bottom: 10px;
            }

            .footertext.ms-4 {
                width: 100%;
                margin-left: 0px !important;
            }

            .csr-container {
                display: block;
            }

            .csr-images1 {
                width: 170px;
                margin: 0 auto;
            }

                .csr-images1 img {
                    width: 100%;
                }

            .csr-texts {
                width: 100%;
                margin-top: 10px;
            }

            .csr-container {
                margin-bottom: 50px;
            }

            .main-cont {
                padding-top: 100px;
            }

            .dots .swiper-button-next:after {
                font-size: 20px;
            }

            .dots .swiper-button-prev:after {
                font-size: 20px;
            }

            a.csr-btn {
                margin-bottom: 12px;
            }

            .infra-upeer-text1 h5 {
                font-size: 20px;
            }

            .client-table.table thead th {
                padding: 5px;
                font-size: 12px;
            }

                .client-table.table thead th select {
                    padding: 5px;
                    font-size: 10px;
                    width: 100%;
                }

            .client-table.table tr td:nth-child(1) {
                width: 25%;
                font-size: 10px;
            }

            .client-table.table tr td:nth-child(2) {
                width: 25%;
                font-size: 10px;
            }

            .client-table.table tr td {
                width: 50%;
                padding: 10px;
                font-size: 12px;
            }

            .contact-text p {
                font-size: 16px;
            }

            .carrers-form label {
                font-size: 16px;
            }
            .main-bnr-img,
            .metro-bottom-img {
                min-height: auto;
            }
            .content-banner {
                padding-top: 5vh;
                padding-left:30px;
            }
            .content-banner::before {
                    height: calc(5vh + 48px);
                }
                .content-banner h1 {
                    font-size: 20px;
                }
            .inside-img .content-banner {
                padding-top: 3vh;
            }
                .inside-img .content-banner::before {
                    height: calc(3vh + 48px);
                }
            .inside-bnr {
                min-height: auto;
            }
            .footer-text svg {
                height: 15px;
                width: 15px;
            }
            .client-var {
                padding: 15px !important;
            }
        }

        @media (max-width:412px) {
            .machine-heading h4 {
                font-size: 10px;
            }

            .pagination button {
                padding: 0px 6px;
            }
        }
