@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap");
/* -------------------- Root Variables Start -------------------- */
:root {
    /* Colors */
    --color-primary: #1c75bc;
    --color-primary-50: color-mix(in srgb, var(--color-primary), transparent 50%);
    --color-grey: #efefef;
    --color-dark: #58595b;
    --color-white: #fff;
    /* Fonts */
    --font-family: "Roboto Flex", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 600;
    /* Spacings */
    --section-padding: 50px;
    /* Other */
    --border-color: #dddddd;
}
@media (min-width: 992px) {
    :root {
        --section-padding: 100px;
    }
}
/* -------------------- Root Variables End -------------------- */
/* -------------------- Default Styles Start -------------------- */
html,
body {
    font: var(--font-regular) 17px/1.5 var(--font-family);
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
    color: var(--color-primary);
}
:is(.bg-primary a) {
    color: var(--color-white);
}
:is(a:hover, a:focus):not(.btn, header a, footer a, a:has(.product-card), a.certificate-content) {
    text-decoration: underline;
}
footer ul {
    list-style: none;
    padding: unset;
    margin: unset;
}
ul:not(footer ul) {
    padding-left: 20px;
}
:is(.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6) {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}
h2 {
    color: var(--color-primary) !important;
}
@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
        color: var(--color-primary) !important;
    }
}
p {
    font-size: 17px;
}
hr:not(footer hr) {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 0;
}
.bg-primary h2 {
    color: var(--color-white) !important;
}
/* BUTTON CSS START  */
.btn {
    --btn-bg: var(--color-primary);
    --btn-color: var(--color-white);
    --btn-hover-color: var(--color-primary);
    --btn-border-color: var(--color-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1.6rem;
    border-radius: 0;
    font-weight: var(--font-medium);
    border: 1px solid var(--btn-border-color) !important;
    background-color: var(--btn-bg) !important;
    color: var(--btn-color) !important;
    transition: all 300ms ease-in-out;
    /* transition: all 0.4s ease-in-out; */
}
.btn::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    margin-left: 5px;
    font-size: 20px;
    font-weight: var(--font-medium);
    transition: transform 300ms ease-in-out;
}
.btn:hover::after {
    transform: translateX(6px);
}
.btn.btn-blue,
.bg-primary .btn {
    --btn-bg: var(--color-white);
    --btn-color: var(--color-primary);
    --btn-hover-color: var(--color-white);
    --btn-border-color: var(--color-white);
}
.btn:hover {
    background-color: transparent !important;
    color: var(--btn-hover-color) !important;
}
/* -------------------- Default Styles End -------------------- */
/* -------------------- Custom Styles Start -------------------- */
.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
.bg-grey {
    background-color: var(--color-grey);
}
.bg-dark-grey {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.bg-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white);
}
.text-white {
    color: var(--color-white) !important;
}
.text-primary {
    color: var(--color-primary) !important;
}
.text-dark {
    color: var(--color-dark) !important;
}
.last-child-mb-0 *:last-child {
    margin-bottom: 0;
}
.contact-btn {
    padding-top: 8px;
    padding-bottom: 8px;
}
.img-effect {
    overflow: hidden !important;
}
.img-effect img {
    transition: all 500ms;
}
.mega-menu-item p {
    color: #000 !important;
}
.production-card .img-effect img {
    filter: grayscale(100%);
}
.mega-menu-item:hover .img-effect img,
.img-effect:hover img,
.production-card:hover .img-effect img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.grecaptcha-badge {
    right: auto;
    left: 14px;
    width: 70px !important;
    transition: all 300ms ease-in-out !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}
@media (max-width: 991px) {
    .mega-menu-item {
        border-bottom: 1px solid var(--color-primary);
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    .container,
    .container-fluid,
    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
/* -------------------- Custom Styles End -------------------- */
/* -------------------- Bootstrap Overrides Start -------------------- */
.navbar {
    padding: unset;
    --bs-navbar-nav-link-padding-x: 0.8rem;
}
.navbar-brand {
    margin: unset;
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 200px;
}
.nav-link {
    color: var(--color-primary);
    font-weight: var(--font-bold);
    transition: all 0.4s ease-in-out;
}
.nav-link:focus,
.nav-link:active {
    color: var(--color-primary) !important;
}
.nav-link:hover {
    color: var(--color-dark) !important;
}
.offcanvas-header {
    padding: 0.25rem 1rem;
    border-bottom: 1px solid var(--color-primary);
}
.offcanvas-body {
    --bs-offcanvas-padding-x: 0rem;
    padding: 0;
}
.dropdown .dropdown-menu {
    --bs-dropdown-padding-y: 0rem;
    background-color: var(--color-grey);
}
@media (min-width: 1200px) {
    .navbar {
        --bs-navbar-nav-link-padding-x: 1rem;
    }
    .navbar-brand {
        padding: 1rem 2rem;
        max-width: 250px;
    }
}
@media (min-width: 1400px) {
    .navbar {
        --bs-navbar-nav-link-padding-x: 1.3rem;
    }
    .navbar-brand {
        max-width: unset;
    }
}
@media (max-width: 1199.98px) {
    .offcanvas {
        max-width: 300px;
    }
    .nav-link {
        color: var(--color-primary);
        font-weight: var(--font-bold);
        padding: 1rem;
        border-bottom: 1px solid;
    }
}
/* -------------------- Bootstrap Overrides End -------------------- */
/* --------------------- Header Start --------------------- */
header {
    border-bottom: 1px solid var(--color-primary);
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    z-index: 1000;
}
header .nav-link:focus,
.nav-link:hover {
    color: var(--bs-link-hover-color);
}
.dropdown .dropdown-menu {
    border-radius: unset;
    margin: unset;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.4s ease-in-out;
}
.product-mega-menu {
    max-width: 970px;
    left: auto !important;
}
.about-mega-menu {
    max-width: 900px;
    left: auto !important;
    right: 50px !important;
}
.mega-menu-item h2 {
    font-size: 1.5rem;
}
@media (max-width: 1200px) {
    .mega-menu-item {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media (min-width: 1200px) {
    .dropdown .dropdown-menu {
        border: 1px solid var(--color-primary);
        padding: 2rem;
    }
    .contact-btn {
        padding: 1rem 2rem;
    }
    .divider {
        width: 1px;
        height: 100px;
        background-color: var(--color-primary);
    }
}
.slideIn {
    animation-name: slideIn;
    animation-duration: 500ms;
}
@keyframes slideIn {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
    0% {
        clip-path: inset(0 0 100% 0);
    }
}
@media (max-width: 1200px) {
    .menu-icon {
        width: 25px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        background-color: transparent;
        border-radius: 50px;
        transition: all 0.4s ease-in-out;
        align-items: end;
    }
    .menu-icon-lines {
        width: 80%;
        height: 2px;
        background-color: var(--color-primary);
        transition: all 450ms ease-in-out;
    }
    .menu-icon-line-1,
    .menu-icon-line-3 {
        margin-right: auto;
    }
    .menu-icon.close .menu-icon-lines {
        background-color: var(--color-primary);
    }
    .menu-icon.close {
        transition: all 950ms ease-in-out;
        transform: rotate(45deg);
    }
    .menu-icon.close .menu-icon-line-2 {
        width: 0;
    }
    .menu-icon.close .menu-icon-line-1 {
        transform: translateY(8px);
        width: 100%;
    }
    .menu-icon.close .menu-icon-line-3 {
        width: 100%;
        transform: translateY(-10px) rotate(90deg);
    }
}
/* --------------------- Header End --------------------- */
/* --------------------- New Banner Section Start --------------------- */
.banner {
    width: 100%;
    height: calc(90vh - 82px);
    position: relative;
}
.banner-slider.swiper {
    width: 100%;
    height: calc(90vh - 82px);
    position: relative;
}
.banner-slider .swiper-slide::after,
.banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0 0 0 / 60%);
}
.banner-slider .swiper-slide .container,
.banner-slider .swiper-slide .row {
    height: 100%;
}
.banner .sub-heading {
    color: var(--color-white);
}
.for-background-image {
    position: relative;
}
.for-background-image .background-image {
    top: 0;
    left: 0;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: -1;
}
.banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    color: var(--color-white) !important;
}
.banner-content h3 {
    color: var(--color-white) !important;
}
.banner-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-white) !important;
}
.banner-content h3 {
    font-size: 2.25rem;
}
.swiper-slide-active .banner-content {
    opacity: 1;
}
@keyframes moveDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .banner .header-padding {
        padding: 50px 15px;
    }
}
@media (min-width: 768px) {
    .banner-content h2 {
        font-size: 2.75rem;
    }
}
@media (min-width: 992px) {
    .banner,
    .banner-slider.swiper {
        height: 81vh;
    }
    .banner-content h2 {
        font-size: 3.5rem;
    }
}
/* --------------------- New Banner Section End --------------------- */
/* --------------------- Number Section Start --------------------- */
.number-section {
    color: var(--color-white) !important;
    background-color: var(--color-primary);
}
.number-section h2 {
    color: var(--color-white) !important;
}
.number-section p {
    margin-bottom: unset;
}
.section-left.container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.section-left::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--color-primary);
    z-index: -1;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .number-section h5 {
        font-size: 45px !important;
    }
}
@media (min-width: 992px) {
    .number-section.bg-lg-white {
        background-color: var(--color-white);
    }
    .number-section {
        background-color: var(--color-grey);
    }
    .section-left.container {
        transform: translateY(-50%);
    }
    .section-left::before {
        left: calc((100vw - 960px) / -2);
    }
}
@media (min-width: 1200px) {
    .section-left::before {
        left: calc((100vw - 1140px) / -2);
    }
}
@media (min-width: 1400px) {
    .section-left::before {
        left: calc((100vw - 1320px) / -2);
    }
}
@media (max-width: 991px) {
    .number-section {
        background-color: var(--color-primary) !important;
    }
}
/* --------------------- Number Section End --------------------- */
/* --------------------- Product Section Start --------------------- */
.product {
    background-color: var(--color-grey);
}
.product-card {
    width: 100%;
    height: 100%;
    position: relative;
}
.product-card.img-effect {
    margin-bottom: unset !important;
}
.product-card img {
    width: 100%;
    height: 100%;
}
.product-content {
    margin-top: 20px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}
.products-swiper a,
.industries-swiper a {
    color: var(--color-primary) !important;
}
.product-card:hover .product-content h4,
.certificate-content:hover .product-content h4,
.product-card:hover .product-content h3 {
    color: var(--color-dark);
}
.product-content h4 {
    color: var(--color-primary);
}
.swiper-button-prev,
.swiper-button-next {
    position: static;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 300;
}
.swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
}
.static-nav {
    display: flex;
    justify-content: end;
}
.static-nav:has(.swiper-button-prev.swiper-button-lock, .swiper-button-next.swiper-button-lock) {
    display: none;
}
/* --------------------- Product Section End --------------------- */
/* --------------------- Brand Logo Section Start --------------------- */
.logos {
    overflow: hidden;
    padding: 35px 0;
    background-color: var(--color-white);
    white-space: nowrap;
}
.logos-slide {
    display: inline-block;
    align-items: center;
    animation: slide 35s infinite linear;
}
.logos-slide img {
    height: auto;
    margin: 0 40px;
}
.logos:hover .logos-slide {
    animation-play-state: paused;
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* --------------------- Brand Logo Section End --------------------- */
/* --------------------- About Section Start --------------------- */
.about {
    overflow: hidden;
    position: relative;
}
.about h2 {
    color: var(--color-white) !important;
    margin-bottom: 0.75rem;
}
.about-img img {
    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {
    .about-content {
        padding-top: 1rem;
    }
}
@media (min-width: 992px) {
    .about-padding-x {
        padding-left: clamp(30px, 4.166666666666667vw, 50px);
        padding-right: clamp(30px, 4.166666666666667vw, 50px);
    }
    .about::after {
        position: absolute;
        content: "";
        width: 40%;
        height: var(--section-padding);
        background-color: var(--color-white);
        bottom: 0;
        left: 0;
    }
    .about-img {
        width: 100%;
        height: 100%;
        min-height: 550px;
        position: relative;
        overflow: hidden;
    }
    .about-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .about-content {
        width: 100%;
        height: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 1200px) {
    .about-padding-x {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (min-width: 1400px) {
    .about-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .about-padding-x {
        padding-left: clamp(50px, 5.208333333333333vw, 100px);
        padding-right: 100px;
    }
}
/* --------------------- About Section End --------------------- */
/* --------------------- Product Section Start --------------------- */
.production {
    padding-top: 40px;
    padding-bottom: 40px;
}
.production-card:hover {
    border: 1px solid var(--color-primary);
}
.production-card h2 {
    color: var(--color-primary);
    padding: 1.5rem;
    margin-bottom: 0;
}
.production-card {
    margin-bottom: 32px;
    background-color: var(--color-grey);
    border: 1px solid transparent;
}
.card-content {
    padding: 1rem 1.5rem;
}
@media (max-width: 767px) {
    .production-card {
        background-color: var(--color-grey);
    }
}
@media (min-width: 992px) {
    .production {
        padding-top: 80px;
        padding-bottom: 120px;
    }
}
/* --------------------- Product Section End --------------------- */
/* --------------------- Ask Section Start --------------------- */
.ask-section {
    color: var(--color-white);
}
.ask-section h2,
.ask-section a {
    color: var(--color-white) !important;
    transition: all 0.4s ease-in-out;
}
.section-right.container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.section-right::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--color-primary);
    z-index: -1;
}
.ask-section a:hover {
    text-decoration: underline !important;
}
@media (min-width: 992px) {
    .ask-section.bg-grey {
        background-color: var(--color-grey) !important;
    }
    .ask-section {
        height: 98px;
    }
    .section-right.container {
        padding: 2rem 2.5rem;
    }
    .section-right::after {
        right: calc((100vw - 960px) / -2);
    }
}
@media (min-width: 1200px) {
    .section-right::after {
        right: calc((100vw - 1140px) / -2);
    }
}
@media (min-width: 1400px) {
    .section-right::after {
        right: calc((100vw - 1320px) / -2);
    }
}
@media (max-width: 991px) {
    .ask-section {
        background-color: var(--color-primary) !important;
    }
}
/* --------------------- Ask Section End --------------------- */
/* --------------------- Inner Page Banner Section Start --------------------- */
.inner-page-banner {
    width: 100%;
    height: 50vh;
    position: relative;
}
.inner-page-banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0 0 0 / 50%);
}
.inner-page-banner.unset::after {
    content: unset;
}
.inner-page-banner img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    z-index: 10;
}
.inner-banner-content h1 {
    position: relative;
    text-transform: capitalize;
}
.inner-banner-content h1 {
    font-size: 2.25rem;
    font-weight: var(--font-bold);
}
@media (min-width: 768px) {
    .inner-page-banner {
        height: 70vh;
    }
    .inner-page-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .inner-banner-content h1 {
        font-size: 2.75rem;
    }
}
@media (min-width: 992px) {
    .inner-banner-content h1 {
        font-size: 3.5rem;
    }
}
/* --------------------- Inner Page Banner Section End --------------------- */
/* --------------------- About Page Css Start --------------------- */
.vision-mision-icon {
    width: 50px;
}
.logo-box {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: white;
}
.logo-box img {
    height: 75px;
}
@media (min-width: 576px) {
    .logo-box {
        height: 175px;
        padding: 30px;
    }
    .logo-box img {
        height: auto;
    }
}
@media (max-width: 500px) {
    .logo-box img {
        width: 75% !important;
    }
}
/* --------------------- About Page Css End --------------------- */
/* --------------------- Contact Page Css Start --------------------- */
:is(.form-control, .form-select) {
    position: relative;
    width: 100%;
    padding: 8px 10px;
    border-radius: 0;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    font-size: 18px;
    transition: all 0.4s ease;
}
:is(.form-control, .form-select):focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(28, 116, 188, 0.25) !important;
}
.form-group {
    position: relative;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group label {
    margin-bottom: 5px;
    color: var(--color-dark);
    font-weight: var(--medium-font);
}
.contact-details a {
    color: var(--color-dark);
}
.contact-details a:hover {
    color: var(--color-primary);
}
/* --------------------- Contact Page Css End --------------------- */
/* --------------------- careers Page Css Start --------------------- */
.card {
    border: none;
    border-radius: unset;
}
.card-1 .card-heading {
    background-color: var(--color-primary);
    text-align: center;
    padding: 20px;
}
.card-1 .card-heading h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 0;
}
.card-1 .card-body {
    background-color: var(--color-white);
}
.card-1 a {
    color: var(--color-dark);
}
.card-1 a:hover {
    color: var(--color-primary);
}
/* --------------------- careers Page Css End --------------------- */
/* --------------------- Products Page Css Start --------------------- */
.product-card .card-body {
    text-align: center;
}
.product-card .card-body h3 {
    margin-bottom: 0;
}
.card-2 .card-body p:last-child,
.card-2 .card-body ul {
    margin-bottom: 0;
}
.card-2 .card-body ul {
    padding-left: 1rem;
}
.card-2 .card-body {
    padding: 32px !important;
}
.card-2 {
    height: 100%;
}
/* --------------------- Products Page Css End --------------------- */
.accordion {
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c75bc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button {
    box-shadow: unset !important;
    color: var(--color-primary);
}
.accordion-tab .accordion-body {
    padding: 1.5rem 0 0 0;
    background-color: unset;
}
.accordion-tab .accordion-item {
    background-color: transparent;
    border: unset;
}
.accordion-item {
    margin-bottom: 1.5rem;
}
.accordion-button:not(.collapsed) {
    color: var(--color-white);
    background-color: var(--color-primary);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
@media (min-width: 768px) {
    .accordion-tab .accordion-body {
        padding: 0;
    }
    .accordion-tab .accordion-header {
        display: none !important;
    }
    .accordion-tab .collapse:not(.show) {
        display: block !important;
    }
    .tab-btn {
        background-color: var(--color-white);
        display: flex;
        color: var(--color-white);
        padding: 1rem;
    }
    .tab-btn > * {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .tab-btn * {
        color: var(--color-primary) !important;
    }
    .tab-btn {
        position: relative;
    }
    .tab-btn .bi {
        opacity: 0;
    }
    .tab-btn.active .bi {
        opacity: 1;
    }
    .tab-btn::after {
        content: "";
        font-family: bootstrap-icons;
        position: absolute;
        left: 0;
        top: 0;
    }
    .tab-btn.active {
        background-color: var(--color-primary);
    }
    .tab-btn:hover:not(.active) {
        background-color: var(--color-primary-50);
    }
    .tab-btn.active *,
    .tab-btn:hover * {
        color: var(--color-white) !important;
    }
    .tab-accordion {
        margin-bottom: 24px;
    }
}
@media (min-width: 1200px) {
    .tab-btn {
        padding: 1.5rem;
    }
}
@media (max-width: 767px) {
    .tab-accordion {
        display: none;
    }
    .accordion-tab .tab-content > .tab-pane {
        display: block !important;
        opacity: 1 !important;
    }
}
/* Lubrication page css start  */
.custom-table {
    font-size: 14px;
}
.custom-table th,
.custom-table td {
    vertical-align: middle;
    /* border: 1px solid #dee2e6; */
    background-color: var(--color-white);
}
.custom-table thead th {
    /* background: white; */
    text-align: center;
    font-weight: 600;
}
.category-cell {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    font-weight: 600;
    color: #555;
    min-width: 40px;
}
.last-td {
    text-align: center;
}
/* Category Colors */
.multi {
    background: #e1f5d9 !important;
}
.highload {
    background: #fff9e0 !important;
}
.hightemp {
    background: #f1dad7 !important;
}
.special {
    background: #edf0f7 !important;
}
.grease-name {
    font-weight: 600;
    white-space: nowrap;
}
.table > :not(caption) > * > * {
    /* background-color: unset !important; */
}
@media (max-width: 768px) {
    .custom-table {
        font-size: 12px;
    }
}
/* Lubrication page css over   */
/* certificate page css start */
.img-effect.text-center {
    padding: 25px;
}
.certificate-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: var(--color-primary) !important;
}
/* certificate page css over  */
/* --------------------- Footer Start --------------------- */
footer {
    --color-dark: #232324;
    padding-top: 50px;
}
footer * {
    color: color-mix(in srgb, var(--color-white), transparent 40%);
}
footer h3 {
    color: var(--color-white);
}
footer p,
h5,
h6 {
    margin-bottom: unset;
}
footer h5 {
    font-weight: 700 !important;
}
footer a {
    line-height: 32px;
}
footer :is(a:hover, a:focus) {
    color: var(--color-white);
}
.top-footer {
    justify-content: space-between;
    line-height: 32px;
    padding-bottom: 20px;
}
.bottom-footer {
    padding-bottom: 1rem;
    align-items: center;
    line-height: 22px;
}
@media (min-width: 992px) {
    footer {
        padding-top: calc(var(--section-padding) + 50px);
    }
}
/* --------------------- Footer End --------------------- */