* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #001233;
}

body {
    font-family: "Figtree", "Sans-sarif";
}

p,
label,
span,
a,
button {
    font-size: 15px;
    color: #000;
}

a {
    color: var(--theme-color);
    text-decoration: none;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--theme-color);
}

a:hover {
    color: var(--theme-color);
    text-decoration: none;
}

h1 {
    font-size: 35px;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--theme-color);
}

h3 {
    font-size: 17px;
    font-weight: 500;
}

h4 {
    font-size: 16px;
    font-weight: 500;
}

h5,
h6 {
    font-size: 14px;
    font-weight: 500;
}

.space-between-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

input,
input:focus {
    outline: none;
    border: none;
    font-size: 16px;
    background-color: transparent;
}

/* Header Css */
#main_header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0px 0px 7px 0px #a2a2a2;
    transition: all 0.3s ease-in-out;
    top: 0;
}

.page-content-info {
    margin-top: 116px;
}

.inquiry-div a {
    line-height: 0;
}

.box-product:hover .inquiry-div a i {
    color: #fff;
}

/* header{
    box-shadow: 0px 0px 7px 0px #a2a2a2;
} */
header li.nav-item {
    position: relative;
}

header li.nav-item a:hover {
    color: var(--theme-color);
}

#main_header form {
    border: 1px solid #a2a2a2;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#main_header input[type="search"] {
    height: 100%;
    padding: 0px 10px;
}

#main_header form button {
    border: none;
    background: #001233;
    height: 100%;
    padding: 7px 12px;
}

#main_header form button i {
    color: #fff;
    font-size: 14px;
}

#searchModal form {
    border: 1px solid #a2a2a2;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#searchModal input[type="search"] {
    height: 100%;
    padding: 0px 10px;
    width: 100%;
}

#searchModal form button {
    border: none;
    background: #001233;
    height: 100%;
    padding: 7px 12px;
}

#searchModal form button i {
    color: #fff;
    font-size: 14px;
}

.upper-header {
    height: 45px;
    background-color: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
}

.fa-magnifying-glass {
    color: var(--theme-color);
    font-size: 17px;
}

.app-logo img {
    width: 100%;
    height: 55px;
}

.call {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.call img {
    height: 17px;
    width: 17px;
}

p.header-number {
    margin: 0;
    font-size: 13px;
    color: #fff;
}

.left-side {
    display: flex;
    align-items: center;
    gap: 50px;
}

.left-side a .call p.header-number:hover {
    text-decoration: underline;
}

.footer-div.desktop_footer .first-colum p.location a:hover {
    text-decoration: underline;
}

.second-colum .footer-link:hover,
.third-colum .footer-link:hover,
.fourth-colum .footer-link:hover,
p.copy-r a:hover {
    text-decoration: underline;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-side img {
    height: 30px;
    width: 24px;
}

.upper-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.al-navbar li {
    position: relative;
}

.al-navbar li.nav-item.active a::before,
.al-navbar li.nav-item a:hover::before {
    position: absolute;
    content: "";
    height: 3px;
    bottom: 0;
    width: 30%;
    background-color: #001233;
}

.al-navbar li.nav-item.active a::after,
.al-navbar li.nav-item a:hover::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: 0;
    width: 50%;
    transition: all 0.5s ease-in;
    left: calc(30% + 10px);
    /* Adjusted left position to accommodate the before element */
    background: url("../images/three-dots.svg") no-repeat;
    background-size: contain;
    /* Ensures the dots scale properly */
}

/* megamenu */
.nav-item {
    position: relative;
    /* Ensure the nav-item is the reference point for the absolute positioned megamenu */
}

.nav-item .megamenu {
    position: absolute;
    top: calc(100% + 10px);
    width: 1100px;
    left: calc(50% - 390px);
    background-color: #fff;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item.show .megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu .category a {
    display: flex;
    gap: 5px;
    align-items: center;
}

.megamenu .category img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.megamenu a:hover:before,
.megamenu a:hover:after {
    display: none;
}

.megamenu .category {
    border: 1px solid #a2a2a2;
    margin-bottom: 24px;
    border-radius: 6px;
    padding: 6px;
}

.megamenu .category:hover {
    box-shadow: 2px 7px 16px 0px rgba(0, 0, 0, 0.11);
    border: none;
}

.megamenu .col-md-3:nth-last-child(-n + 4) .category {
    margin-bottom: 0;
}

/* banner start  */
.banner {
    background: linear-gradient(90deg, #001233 45%, #f2f2f2 45%);
    /* padding-top: 80px;
    padding-bottom: 80px; */
    margin-bottom: 30px;
}

.banner .item {
    padding-top: 80px;
    padding-bottom: 120px;
}

.banner .slider-text {
    color: #fff;
}

/* banner end  */

a.nav-link {
    color: #000;
    font-size: 14px;
}

.nav-item.active a.nav-link {
    color: var(--theme-color);
    font-weight: 600;
}

ul.navbar-nav {
    margin-left: -100px;
    gap: 25px;
}

.primary-button {
    background: var(--theme-color);
    color: #fff;
    width: fit-content;
    text-decoration: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid var(--theme-color);
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.primary-button:hover {
    background: #fff;
    color: var(--theme-color);
}

.container-fluid {
    padding: 0px 70px;
}

.bannertext {
    width: 100%;
    background-color: #f2f2f2;
    height: 400px;
    z-index: 999;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bannerheading {
    margin: 0px;
}

.bannertextp {
    font-size: 18px;
    margin: 0px;
    color: #fff;
    width: 80%;
}

.slider-images {
    display: flex;
    gap: 50px;
    width: 100%;
    position: absolute;
    left: -50px;
    height: auto;
    width: 100%;
    justify-content: space-between;
}

.banner .slider-images img {
    width: auto !important;
    height: 240px;
}

/* .banner .slider-images img:nth-child(2) {
    width: 17%;
    height: 100%;
}

.banner .slider-images img:nth-child(3) {
    width: 41%;
    height: 100%;
} */

.black-box-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1.white-box-text-head {
    font-size: 50px;
    font-weight: 900;
    opacity: 5%;
    text-transform: uppercase;
}

.banner-image-div {
    display: flex;
    z-index: 1000;
    top: 35px;
    position: absolute;
    left: -100px;
    justify-content: left;
    align-items: flex-end;
    gap: 30px;
}

section.banner .primary-button {
    background: #fff;
    color: #000;
    transition: all 0.4s ease-in-out;
}

section.banner .primary-button:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
}

.banner-image-div img {
    /* width: 100%; */
    height: 300px;
}

section.categeory-section {
    position: relative;
}

.section-title {
    text-align: center;
}

.box {
    border: 1px solid #a2a2a2;
    background-color: #ffff;
    color: #1a1a1a;
    border-radius: 15px;
    width: 100%;
    margin-top: 15px;
    min-height: 200px;
    z-index: 1000;
    transition: border 0.8s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box:hover img {
    transform: scale(1.1);
}

.box .box-image img {
    transition: 0.2s all ease;
}

.box-image {
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.box-heading,
#our_products .product-box-heading {
    text-align: center;
    padding: 0 10px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#our_products .product-box-heading {
    text-align: start;
    padding: 0px;
}

.box-heading:hover {
    color: var(--theme-color);
}

.maindiv {
    display: flex;
    flex-direction: row;
    /* width: 100%; */
    flex-wrap: wrap;
    z-index: 1000;
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
    margin-top: 5px;
}

.maindiv .box {
    margin-top: 0;
}

.box-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.box-title {
    height: 100%;
    margin-top: 8px;
}

.animated-images {
    position: absolute;
    height: 164px;
    width: 151px;
    opacity: 0.5;
    object-fit: cover;
    display: flex;
    z-index: 999;
    transition: opacity filter 0.8s ease;
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    filter: blur(4px);
    transition: filter 0.8s ease;
}

img.first-image {
    top: -20px;
    left: 0px;
}

img.second-image {
    top: 140px;
    right: 20px;
}

img.third-image {
    bottom: 153px;
    left: -14px;
}

img.fourth-image {
    bottom: -70px;
    right: 20px;
}

img.animated-images:hover {
    opacity: 1;
    filter: blur(0px);
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes slideInFromLeft {
    from {
        left: -100px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        right: -100px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.box:hover {
    box-shadow: 2px 7px 16px 0px rgba(0, 0, 0, 0.11);
    border: none;
}

.fadein {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.welcome-text {
    text-align: justify;
    margin-top: 25px;
}

a.readbtn {
    color: #fff;
    background-color: #1a1a1a;
    text-decoration: none;
    padding: 9px 23px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 400;
}

a.readbtn:hover {
    color: #1a1a1a;
    background-color: #fff;
    padding: 9px 23px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #1a1a1a;
}

.btn-div {
    margin-top: 30px;
}

.welcome-tab-section {
    margin-bottom: 5px;
    justify-content: center;
    gap: 15px;
}

.welcome-tab-section .nav-link {
    color: #000;
    border: none;
    background: none;
    opacity: 0.5;
    cursor: pointer;
    text-transform: capitalize;
}

.welcome-tab-section .nav-link.active {
    color: var(--theme-color);
    opacity: 1;
}

.image-div-img {
    background-color: #001233a1;
    color: #fff;
    padding: 30px 30px;
}

#quality-assurance {
    background-repeat: no-repeat;
    background-size: contain;
    height: 265px;
    border-radius: 15px;
    margin: 0 auto;
    align-items: center;
    background-size: cover;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

#vision {
    background-repeat: no-repeat;
    background-size: contain;
    height: 265px;
    border-radius: 15px;
    margin: 0 auto;
    align-items: center;
    background-size: cover;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

#mission {
    background-repeat: no-repeat;
    background-size: contain;
    height: 265px;
    border-radius: 15px;
    margin: 0 auto;
    align-items: center;
    background-size: cover;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.tab-content-welcome {
    width: 100%;
    padding: 50px;
    border-radius: 10px;
}

.image-div-img {
    background-color: #001233a1;
    color: #fff;
    padding: 22px 31px;
    border-radius: 10px;
}

.tab-heading {
    opacity: 100%;
    z-index: 1000;
    color: #fff;
    margin-top: 16px;
}

.tab-text {
    font-weight: 400;
    color: #fff;
    font-size: 14px;
}

section.we-serve-section {
    margin-bottom: 30px;
    background: linear-gradient(transparent 44%, #f2f2f2 20%);
}

.owl-carousel {
    position: relative;
}

.banner .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.banner button.owl-prev {
    position: absolute;
    left: 0;
}

.banner button.owl-next {
    position: absolute;
    right: 0;
}

.banner button:hover span,
.main-div-serve button:hover span,
.news-event-slider button:hover span,
.testimonial-row button:hover span {
    background-color: #001233;
    border-color: #a2a2a2 !important;
    color: #fff;
}

.mobile_footer .contact-info .location a:hover,
.side_mobile_footer .contact-info .location a:hover {
    text-decoration: underline;
}

div#side-product-cat .footer-link:hover,
div#side-quick-link .footer-link:hover {
    text-decoration: underline;
}

footer a.footer-link:hover {
    text-decoration: underline;
}

.we-serve-section .owl-nav {
    position: absolute;
    top: -57px;
    right: 0;
    margin-top: 0 !important;
}

.owl-nav button span {
    background: #f2f2f2;
    padding: 2px 12px 4px;
    border-radius: 100%;
    font-size: 22px;
    border: 1px solid #001233 !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent !important;
    color: #000 !important;
}

.main-div-serve {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.main-div-serve .card {
    height: 180px;
    /* width: calc(20% - 20px); */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.main-div-serve .card:hover img {
    transform: scale(1.1);
}

.main-div-serve .card img {
    height: 225px;
    width: 100%;
    transition: transform 0.3s ease;
    /* object-fit: contain; */
}

.main-div-serve .card img:hover {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.gradient-div {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.91) 91%
    );
}

.card-title {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    margin: 0;
    width: 100%;
}

.card-heading {
    color: #fff;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    max-height: 3em;
}

.color-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
    margin-bottom: 10px;
}

section.products-section {
    position: relative;
    overflow: hidden;
}

footer .first-colum img {
    height: 60px;
    object-fit: contain;
}

.products-section img.first-image {
    top: 52px;
    left: 0;
}

.products-section img.third-image {
    bottom: 66px;
    left: 0;
}

.products-section img.fourth-image {
    bottom: 66px;
    right: 0;
}

ul#our-products-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.our-products .nav-link {
    border: none;
    background: none;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
    text-transform: capitalize;
}

#our_products .btn-div {
    display: flex;
    justify-content: center;
}

.our-products .nav-link.active {
    opacity: 1;
}

.color-divp {
    color: #000;
    margin: 0;
}

.box-product {
    border: 0.7px solid #a2a2a2;
    border-radius: 10px;
    height: 100%;
    color: #000;
    width: calc(20% - 15px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    background: #fff;
    position: relative;
    z-index: 999;
    transition: 0.5s all ease;
}
#all-product .owl-item {
    padding: 5px;
}

.box-product:hover {
    box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.11);
    border: none;
}

.box-product:hover .inquiry-div {
    background-color: var(--theme-color);
    color: #fff;
}

.box-product-image img {
    transition: 0.5s all ease;
}

.box-product:hover .box-product-image img {
    transform: scale(1.1);
}

.box-product-image {
    /* height: 250px; */
    text-align: center;
}

.product-box-title {
    height: 80px;
    width: 100%;
    background-color: #f2f2f2;
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
    gap: 10px;
}

.inquiry-div {
    background-color: #e2e2e2;
    border: 0.5px solid #a2a2a2;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box-heading {
    margin: 0;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 20px;
}

.product-box-heading:hover {
    color: var(--theme-color);
}

/* .inquiry-div img {
    width: 20px !important;
    height: 20px !important;
} */

.product-name {
    text-align: left;
    word-wrap: break-word;
    font-size: 15px;
}

.box-product img {
    width: 125px;
    height: 180px;
    object-fit: contain;
    z-index: -1;
    position: relative;
}

.rating-div {
    position: absolute;
    top: 6px;
    left: 6px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 4px;
    z-index: 2;
}

.ratingnumber {
    font-size: 11px;
    padding: 2px 5px;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.ratingnumber span img {
    height: 12px;
    width: 12px;
    margin-top: -3px;
}

.maindiv-product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.view-all-btn-div {
    text-align: center;
    margin-top: 35px;
}

.view-btn {
    color: #000;
    text-decoration: none;
    padding: 7px 30px 8px;
    border: 1px solid var(--theme-color);
    border-radius: 7px;
    display: inline-block;
}

.view-btn:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.counter-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.usp-div {
    background-color: #f2f2f2;
    color: var(--theme-color);
    display: flex;
    gap: 15px;
    padding: 15px 15px;
    border-radius: 7px;
    width: 24%;
    align-items: center;
}

.usp-div img {
    height: 50px;
    width: auto;
}

.usp-text {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: left;
    justify-content: center;
}

.countertext {
    margin: 0;
}

p.title-desc {
    font-weight: 600;
}

.video-div img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnails-image {
    cursor: pointer;
}

.video-div {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-div video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
}

a.enquiry-btn:hover {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 7px;
    cursor: pointer;
}

.button-div {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-row {
    width: 100%;
    position: relative;
    margin-top: 18px;
}

.news-event-slider .owl-nav {
    position: absolute;
    right: 0;
    top: -20px;
}

.news-image {
    width: 60%;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section .news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-box {
    box-shadow: 2px 7px 16px 0 rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    color: #1a1a1a;
    width: 45%;
    padding: 15px 20px;
    background: #fff;
    margin-left: -60px;
    overflow: hidden;
}

.testimonial_note {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.testimonial_note span {
    border-bottom: 2px solid var(--theme-color);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
}

.datep {
    opacity: 0.5;
    margin-bottom: 10px;
    margin-top: 10px;
}

.news-title {
    margin: 0;
    width: 100%;
    line-height: 22px;
    font-weight: 600;
}

p.nes-desc {
    margin: 13px 0px;
}

a.new-btn {
    text-decoration: none;
}

section.testimonial-section {
    padding: 50px 0px;
    background-color: #f2f2f2;
    color: #1a1a1a;
    margin-top: 30px;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 25px;
}
.testimonial-item .description {
    min-height: 140px;
}

/* .testimonial-section .owl-nav button span {
    background: #fff;
} */
.testimonial-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(0px, -80%);
    width: 100%;
}

.testimonial-section .owl-nav .owl-prev {
    float: left;
    margin-left: -48px !important;
}

.testimonial-section .owl-nav .owl-next {
    float: right;
    margin-right: -48px !important;
}

i.fa-solid.fa-star {
    color: #ffc850;
    font-size: 12px;
}

p.testimonial-p {
    margin-bottom: 10px;
}

p.pname {
    margin: 0;
    font-weight: 700;
}

.client-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer :is(p, i) {
    color: #fff;
}

.footer-section {
    padding-top: 60px;
    background-color: var(--theme-color);
    color: #fff;
    margin-top: 30px;
}

.footer-section input,
#toggle-nav input {
    color: #fff;
}

.footer-section input::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #fff;
}

.footer-section input::placeholder {
    color: #fff;
}

.first-colum {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 33%;
    justify-content: left;
    align-items: baseline;
    gap: 10px;
}

.second-colum {
    text-align: left;
    width: 20%;
}

.footer-div a:not(:last-child) {
    display: block;
    margin-bottom: 10px;
}

.fourth-colum {
    text-align: left;
    width: auto;
}

footer hr {
    color: #fff;
    opacity: 0.5;
}

.third-colum {
    text-align: left;
    width: 15%;
}

i.fa-solid.fa-location-dot,
i.fa-solid.fa-phone,
i.fa-solid.fa-envelope {
    font-size: 18px;
}

p.location {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.footer-head {
    height: 72px;
    margin: 0;
    color: #fff;
    white-space: nowrap;
}

.footer-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

hr {
    color: #a2a2a2;
}

.footer-end {
    padding: 20px 0px;
}

input#email {
    width: 100%;
    padding: 5px 10px;
    background: transparent;
    border: none;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

footer .input-grp,
#toggle-nav .input-grp {
    border-bottom: 1px solid #ffffff85;
    display: flex;
}

button.newsletter-footer-button {
    background: transparent;
    border: none;
}

button.newsletter-footer-button img {
    width: 16px;
}

.social-media i.fa-brands {
    padding: 8px;
    border: 0.8px solid #a2a2a2;
    border-radius: 5px;
    transition: all 0.6s ease-in-out;
}

.social-media i.fa-brands:hover {
    border: 0.8px solid var(--theme-color);
    background-color: #fff;
    color: var(--theme-color);
}

.social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
}

p.copy-r {
    text-align: right;
    font-size: 13px;
}

.hr-class {
    padding-top: 30px;
}

/* header  */
.mobile-view {
    display: none;
}

.mobile-view .search {
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    /* background-color: #f2f2f2; */
    border-radius: 7px;
    padding: 0 20px;
}

.mobile-view .search input {
    border: none;
    outline: none;
}

.mobile-view img {
    height: 20px;
    width: 20px;
}

.mobile-nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -100%;
    z-index: 999;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

.is-open {
    right: 0;
}

.nav-header {
    width: 100%;
    padding: 20px;
}

.humberger-menu {
    display: none;
    cursor: pointer;
}

#toggle-nav :is(p, i) {
    color: #fff;
}

.sidespace {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
}

.header-sidespace {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
}

.section-heading {
    align-items: center;
}

.mobile_view_tab {
    display: none !important;
}

.mobile_footer {
    display: none;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* blog start */
.blog-cards-div {
    border: 0.8px solid #a2a2a2;
    border-radius: 10px;
    margin-top: 15px;
    transition: 0.5s all ease;
}

.blog-cards-body-span {
    /* background: #f2f2f2; */
    /* border-radius: 5px; */
    /* color: #1a1a1a; */
    color: #000;
    /* padding: 3px 10px; */
    font-weight: 600;
    line-height: 24px;
}

.blog-cards-p {
    color: #1a1a1a;
    padding-top: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 18px;
}

.blog-readmore {
    color: #1a1a1a;
    position: absolute;
    bottom: 14px;
    font-weight: 500;
}

.blog-readmore .fa-angle-right {
    font-size: 10px;
}

.blog-cards-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 185px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-cards-body {
    padding: 15px;
    position: relative;
    /* height: 140px; */
    height: 125px;
}

@media (max-width: 1024px) {
    .testimonial-item h3.pname.mb-0 {
        font-size: 13px;
    }
    .testimonial-item i.fa-solid.fa-star {
        color: #ffc850;
        font-size: 9px;
    }
    #related_product h2 {
        margin-bottom: 8px !important;
    }
}
@media (max-width: 990px) {
    .blog-cards-body {
        padding: 10px;
        height: 115px;
        margin-bottom: 4px;
    }

    .blog-readmore {
        bottom: 10px;
    }
    .testimonial-item .description {
        min-height: 100px;
    }
}

@media (max-width: 552px) {
    #related_product h2 {
        margin-bottom: 0px !important;
    }
    #related_product .section-title {
        margin-bottom: 4px !important;
    }
    #related_product .owl-nav button span {
        padding: 1px 9px 1px !important;
        font-size: 18px !important;
    }
    #related_product .owl-nav {
        top: -33px !important;
    }
    .testimonial-item .description {
        min-height: 80px;
    }
    .blog-cards-body {
        padding: 10px;
        height: 85px;
        margin-bottom: 4px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blog-cards-body-span {
        line-height: 12px;
    }

    .blog-cards-p {
        padding-top: 7px;
        line-height: 14px;
        margin-bottom: 0px;
    }

    .blog-readmore {
        bottom: 5px;
    }

    .categories-div {
        padding: 15px !important;
    }
}

.Online-p {
    padding-top: 15px;
}

/* blog end */

/* pagination */
.pagination {
    justify-content: center;
    margin-bottom: 0;
}

.page-link {
    border: none;
    color: var(--theme-color);
    border-radius: 4px;
    padding: 2px 8px;
    margin-right: 10px;
}

.page-link:hover {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    border-radius: 4px;
}

/* Banner Start */
.banner_wrapper .row {
    background: #f2f2f2;
    height: 300px;
    align-content: center;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
    border-radius: 10px;
}

/* .banner_wrapper .banner_title{
    font-size: 38px;
} */
.banner_wrapper .banner_title span {
    font-size: 100%;
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
}

.banner_wrapper .banner_title_mobile {
    text-align: center;
    margin-bottom: 15px;
}

.banner_wrapper .banner_title_mobile span {
    font-size: 16px;
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
}

.banner_wrapper .banner_title span:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 15px 40px 6px 23px;
}

.banner_wrapper .banner_title span:last-child {
    padding: 14px 15px 7px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 0 23px 15px;
}

.banner_wrapper .content_center {
    display: flex;
    align-items: center;
}

.bottom-tabs {
    display: none;
    position: fixed;
    background: #fff;
    width: 100%;
    bottom: -1px;
    left: 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0px 0px 10px 5px #00000017;
}

ul.tabs-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0px;
    margin: 0;
}

ul.tabs-menu li {
    width: 100%;
    text-align: center;
}

ul.tabs-menu a {
    width: 100%;
    display: block;
    padding: 15px 12px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
    text-transform: uppercase;
}

ul.tabs-menu a.active {
    background: #001233;
    color: #fff;
}

.footer-end input {
    padding-left: 0 !important;
}

.accordion-button:not(.collapsed)::after {
    background: none;
    font-size: 22px !important;
    content: "-";
}

.accordion-button::after {
    background: none;
    content: "+";
    font-size: 16px !important;
    height: auto;
    line-height: 1px;
}

button.accordion-button:focus {
    box-shadow: none;
}

.side_mobile_footer {
    padding: 0 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%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");
    transform: rotate(-180deg) translateX(10px);
}

#toggle-nav .accordion-body {
    padding: 10px 0 10px 0px;
    border-bottom: 1px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#toggle-nav .contact-info {
    padding: 20px 0;
}

#toggle-nav .contact-info :is(p, a, i) {
    color: #fff;
    fill: #fff;
}

#toggle-nav .accordion .accordion-item {
    border: none;
    background: transparent;
}

#toggle-nav .accordion .accordion-button {
    padding: 5px 0;
    font-size: 13px;
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid #fff;
}

#toggle-nav input::placeholder {
    color: #fff;
}

.modal-backdrop {
    z-index: 9999;
}

.modal {
    z-index: 999999 !important;
}

.product-detail table tbody tr td,
.product-detail table tbody tr td,
.category_content table tbody tr td p,
.blog-detais-div table tbody tr td p {
    padding: 10px;
    margin-bottom: 10px;
}

.page-item.active .page-link {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.page-link:focus {
    z-index: 3;
    color: var(--theme-color) !important;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}

h2.review-heading {
    margin-bottom: 0px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1440px) {
    ul.navbar-nav {
        margin-left: 0px;
        gap: 5px;
    }

    .spacing-div .navbar {
        gap: 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        white-space: nowrap;
        padding-right: 5px;
        padding-left: 5px;
    }

    .button-div {
        gap: 10px;
    }

    .button-div input {
        max-width: 120px;
    }
}

@media screen and (max-width: 1024px) {
    .button-div input {
        max-width: 90px;
    }

    #our_products .product-box-heading {
        padding: 0px;
    }

    .news-event-slider .owl-nav {
        top: -15px;
    }

    .testimonial-item {
        padding: 15px;
    }

    .slider-images {
        left: 0;
    }

    .slider-images img {
        height: 120px;
    }

    .welcome-tab-section {
        margin-bottom: 10px;
        justify-content: start;
    }

    .welcome-tab-section .nav-link {
        padding: 0;
    }

    .welcome-section .section-heading {
        text-align: left;
    }

    .tab-content-welcome {
        padding: 15px;
    }

    .video-div img {
        height: 300px;
    }

    .new-box {
        width: 65%;
        margin-left: -157px;
    }

    .sidespace {
        padding-left: 5%;
        padding-right: 5%;
        width: 100%;
    }

    /* Page Banner */
    .banner_wrapper .banner_title {
        font-size: 28px;
    }

    .banner_wrapper .banner_title span:first-child {
        padding: 10px 40px 8px 23px;
    }

    /* .banner .slider-images img:first-child {
        width: 27%;
        height: 100%;
    }

    .banner .slider-images img:nth-child(2) {
        width: 18%;
        height: 100%;
    }

    .banner .slider-images img:nth-child(3) {
        width: 38%;
        height: 100%;
    } */

    .banner .item {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .banner-imgs {
        display: flex;
        align-items: center;
    }

    .owl-nav button span {
        padding: 0px 9px 1px;
        font-size: 19px;
    }

    .blog-cards-img {
        height: 115px;
    }

    .box-product img {
        height: 150px;
    }

    .box-product {
        height: 100%;
    }

    .product-box-title {
        height: 60px;
    }

    .welcome-text {
        margin-top: 10px;
    }

    .banner_wrapper .row {
        padding-left: 30px;
        padding-right: 20px;
    }

    .banner_wrapper .content_center,
    .banner_wrapper .col-lg-5 {
        padding: 0px;
    }
}

@media screen and (max-width: 992px) {
    h2 {
        font-size: 20px;
    }

    .banner_wrapper .banner_title {
        font-size: 22px !important;
    }

    .banner_wrapper .banner_title span:first-child {
        padding: 8px 12px;
    }

    .banner_wrapper .banner_title span:last-child {
        padding: 0px 15px 8px;
        position: relative;
        top: -2px;
    }

    .banner_wrapper .row {
        min-height: 190px;
        height: auto;
    }

    .bottom-tabs {
        display: block;
    }

    .box-image img {
        object-fit: contain;
    }

    .page-content-info {
        margin-top: 71px;
    }

    #toggle-nav {
        background: var(--theme-color);
        z-index: 9999;
        padding-bottom: 40px;
    }

    span#close-nav svg {
        fill: #fff;
    }

    #toggle-nav ul.imp-link-menu {
        padding: 0 20px;
    }

    #toggle-nav ul.imp-link-menu li {
        border-bottom: 1px solid #fff;
    }

    header ul.imp-link-menu {
        list-style: none;
    }

    header ul.imp-link-menu a {
        color: #fff;
        text-decoration: none;
    }

    .upper-header {
        display: none;
    }

    .mobile-view {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }

    .al-navbar,
    .button-div {
        display: none;
    }

    .humberger-menu {
        display: block;
    }

    .bannertextp {
        font-weight: 500;
        font-size: 14px;
        margin: 0px;
    }

    .box-product {
        width: calc(25% - 15px);
        margin-top: 0px;
    }

    #our-products-tabsContent {
        margin-top: 20px;
    }

    .maindiv-product {
        justify-content: flex-start;
        gap: 20px;
    }

    .counter-section .counter-div {
        flex-wrap: wrap;
        gap: 20px;
    }

    .counter-section .usp-div {
        width: calc(50% - 10px);
        align-items: center;
    }

    .news-section p.nes-desc {
        margin: 10px 0px;
    }

    .news-section .datep {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .testimonial-section .owl-nav .owl-next {
        margin-right: -35px !important;
    }

    .testimonial-section .owl-nav .owl-prev {
        float: left;
        margin-left: -35px !important;
    }

    /* .footer-div {
        flex-wrap: wrap;
        gap: 30px;
    }
    .first-colum,.second-colum,.third-colum,.fourth-colum{
        width: calc(50% - 30px);
    } */
    .social-media {
        gap: 10px;
    }

    .search-conatainer {
        display: flex;
        align-items: center;
        gap: 20px;
        transition: 0.3s;
        border: 1px solid rgb(255 255 255/45%) !important;
        border-radius: 10px;
    }

    .search-conatainer input {
        width: 100%;
    }

    .footer-section {
        padding-bottom: 50px;
    }

    .product-box-title {
        height: 60px;
    }

    img.fourth-image {
        bottom: -25px;
    }

    p.copy-r br {
        display: none;
    }

    .quality.p-md-4 {
        padding: 1rem !important;
    }

    h2.review-heading {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .review-heading span {
        font-size: 20px !important;
    }
}

.form-select,
.form-input {
    color: #828a90;
    margin: 0px;
}

.form-input:focus {
    outline: none !important;
    box-shadow: none !important;
}
#exitIntentModal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    padding: 0;
}
.exitIntentModal .modal-footer a {
    font-size: 14px;
}
@media (min-width: 576px) {
    #exitIntentModal .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
#exitIntentModal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
#exitIntentModal .modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 14px;
    }

    h4 {
        font-size: 10px;
    }

    h5,
    h6 {
        font-size: 10px;
    }

    .sidespace {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-sidespace {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-heading {
        font-size: 16px;
        text-align: left;
        margin-bottom: 0;
    }

    .space-between-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    p {
        font-size: 12px !important;
        line-height: 16px;
    }

    section {
        overflow: hidden;
    }

    .navbar-brand {
        width: auto;
    }

    .app-logo img {
        width: 100%;
        height: 42px;
    }

    .mobile-view {
        width: 60%;
    }

    .mobile-view .search input {
        width: 100%;
    }

    .mobile-view .search {
        padding: 0;
        height: 32px;
    }

    .mobile-view img {
        height: auto;
        width: 18px;
    }

    .error {
        font-size: 10px;
    }

    /* Banner Section */

    .page-content-info {
        margin-top: 58px;
    }

    .banner {
        background: linear-gradient(180deg, #001233 55%, #f2f2f2 30%);
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 15px;
    }

    .banner .slider-text {
        padding: 30px 0;
    }

    .bannerheading {
        font-size: 25px;
        text-align: center;
        /* color: var(--theme-color); */
    }

    .bannertextp {
        text-align: center;
        /* color: var(--theme-color); */
        margin: auto;
        /* margin-bottom: 15px; */
    }

    .primary-button {
        margin: auto;
        width: fit-content;
        padding: 6px 16px;
        font-size: 13px;
    }

    .black-box-inner {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .slider-images {
        justify-content: center;
        position: static;
        transform: unset;
        /* margin-top: 15px; */
        overflow: hidden;
    }

    /* section.banner .primary-button {
        background: #000;
        color: #fff;
    } */
    .banner .slider-images img:first-child {
        width: 21%;
    }

    .banner .slider-images img:nth-child(2) {
        width: 15%;
    }

    .banner .slider-images img:nth-child(3) {
        width: 33%;
    }

    .banner .owl-theme .owl-nav {
        top: calc(50% - 20px);
    }

    /* Category Section */
    .animated-images {
        display: none !important;
    }

    .maindiv {
        width: unset;
        margin-top: -20px;
        justify-content: unset;
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .maindiv .col-lg-2.col-md-3.col-sm-4.col-3 {
        padding-left: 6px;
        padding-right: 6px;
    }

    .maindiv .box {
        height: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
        min-height: auto;
        display: block;
        overflow: visible;
        border-radius: 8px;
    }

    .maindiv .box-image {
        text-align: center;
        padding: 0px;
        overflow: visible;
    }

    .maindiv .box-image img {
        padding: 4px;
        border-radius: 6px;
        height: 100px;
    }

    .maindiv .box-heading {
        overflow: hidden;
        text-overflow: ellipsis;
        /* margin-top: 6px; */
        margin-bottom: 0;
        font-size: 13px;
    }

    .maindiv .box-title {
        margin-top: 0px;
        height: auto;
        padding-bottom: 10px;
    }

    /* Al Kun Steel Trading */
    .welcome-text {
        font-size: 13px;
        text-align: center;
        margin-top: 6px;
        margin-bottom: 0;
    }

    .btn-div {
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }

    .welcome-section .btn-div {
        justify-content: flex-start;
    }

    .welcome-section .btn-div .primary-button {
        margin: unset;
    }

    .welcome-tab-section .nav-link {
        font-size: 13px;
        line-height: 18px;
        padding: 0;
    }

    .welcome-tab-section {
        margin-bottom: 15px;
        justify-content: center;
        gap: 25px;
        margin-top: 0px;
    }

    .tab-content-welcome {
        padding: 15px;
        background-size: 100% !important;
    }

    .image-div-img {
        padding: 1px 15px 15px;
    }

    .tab-heading {
        font-size: 16px;
        text-align: center;
    }

    #quality-assurance,
    #vision,
    #mission {
        height: auto;
    }

    .tab-text {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 0;
        text-align: center;
    }

    /* Industries We Serve */
    .main-div-serve .card {
        height: 140px;
    }

    .card-heading {
        padding: 0 10px;
        margin-bottom: 0;
        font-size: 13px;
    }

    .color-div {
        margin: 15px 0px 0;
        display: block;
        text-align: center;
    }

    .we-serve-section .section-title {
        margin-bottom: 15px !important;
    }

    .color-divp {
        text-align: center;
        margin-bottom: 10px;
    }

    .we-serve-section .owl-nav {
        top: -42px;
    }

    .owl-nav button span {
        padding: 2px 10px 4px;
        font-size: 16px;
    }

    h3.color-divp {
        font-size: 13px;
    }

    /* Our Product */
    .mobile_view_tab {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 10px;
        overflow: auto;
        padding: 5px 0;
        justify-content: start !important;
    }

    .our-product-header :is(button, h2) {
        white-space: nowrap !important;
    }

    .our-product-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .desktop_view_tab {
        display: none !important;
    }

    .our-products .nav-link {
        padding: 0;
        height: 100%;
    }

    .section-title {
        text-align: left;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 15px;
    }

    .welcome-section .section-title,
    .testimonial-section .section-title,
    .products-section .section-title {
        justify-content: flex-start;
    }

    .box-product img {
        height: 150px;
    }

    .box-product {
        width: calc(50% - 15px);
        height: auto;
        margin-top: 0;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .products-section {
        padding-top: 0;
    }

    .products-section .section-heading {
        margin-bottom: 0;
    }

    .view-all-btn-div {
        text-align: left;
        margin-top: 20px;
    }

    .view-btn {
        padding: 6px 20px;
        font-size: 13px;
    }

    .counter-div {
        flex-wrap: wrap;
        gap: 0;
        justify-content: space-around;
    }

    .usp-div {
        width: calc(50% - 15px);
    }

    .usp-div img {
        height: 40px;
        width: auto;
        margin-top: 4px;
    }

    .counter-number {
        margin-bottom: 1px;
    }

    .countertext {
        line-height: 12px;
    }

    .video-div img {
        height: auto;
    }

    /* Latest News & Events */
    .news-image {
        height: 160px;
        border-radius: 6px;
    }

    .news-title {
        font-size: 12px;
        width: 100%;
        line-height: 15px;
    }

    p.nes-desc {
        display: none;
    }

    .new-box {
        width: 60%;
        margin-left: -100px;
        padding: 15px;
    }

    p.datep {
        margin-bottom: 5px;
        margin-top: 0px;
    }

    .news-event-slider .owl-nav {
        top: unset;
        bottom: -25px;
        margin-top: 0 !important;
    }

    .news-section .main-row {
        margin-top: 0px;
    }

    /* Testimonial */
    section.testimonial-section {
        padding: 30px 0px;
        margin-top: 15px;
    }

    section.testimonial-section p.title-desc {
        font-weight: 600;
        display: none;
    }

    .testimonial-section .owl-nav .owl-prev {
        float: unset;
        margin-left: 0px !important;
    }

    .testimonial-section .owl-nav .owl-next {
        float: unset;
        margin-right: 0px !important;
    }

    .testimonial-section .owl-nav {
        top: -37px;
        transform: unset;
        margin-top: 0 !important;
        text-align: right !important;
    }

    .testimonial_note span {
        font-size: 12px;
    }

    .testimonial_note {
        text-align: center;
        margin-top: 15px;
    }

    /* Footer */
    .footer-section {
        padding-top: 30px;
        margin-top: 15px;
    }

    footer .first-colum img {
        height: 40px;
    }

    footer .first-colum p {
        display: none;
    }

    .footer-div {
        flex-direction: column;
    }

    footer
        .footer-div
        :is(.first-colum, .second-colum, .third-colum, .fourth-colum) {
        width: 100%;
    }

    .social-media {
        display: flex;
        gap: 10px;
        justify-content: flex-start;
        margin-top: 20px !important;
    }

    p.copy-r {
        text-align: left;
        margin-top: 20px !important;
        margin-bottom: 0;
    }

    p.copy-r a {
        color: #fff;
    }

    .desktop_footer {
        display: none;
    }

    .mobile_footer {
        display: block;
    }

    img.footer-logo {
        width: 90px;
        height: auto;
        margin-bottom: 15px;
    }

    footer .accordion .accordion-item {
        border: none;
        background: transparent;
    }

    footer .accordion .accordion-button {
        padding: 5px 0;
        font-size: 13px;
        background: transparent;
        border: none;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .accordion-body {
        padding: 0 0 10px 0px;
        border-bottom: 1px solid #fff;
    }

    footer .accordion .accordion-item:not(:last-child) {
        margin-bottom: 15px;
    }

    button:focus:not(:focus-visible) {
        outline: 0;
        box-shadow: none;
    }

    footer a.footer-link {
        display: block;
        margin-top: 10px;
        font-size: 13px;
    }

    .accordion-button::after {
        background: none;
        content: "+";
        font-size: 16px !important;
        height: auto;
        line-height: 1px;
    }

    .accordion-button:not(.collapsed)::after {
        background: none;
        font-size: 22px !important;
        content: "-";
    }

    .hr-class {
        display: none;
    }

    .contact-info {
        padding: 30px 0;
    }

    .contact-info p:last-child {
        margin-bottom: 0;
    }

    i.fa-solid.fa-location-dot,
    i.fa-solid.fa-phone,
    i.fa-solid.fa-envelope {
        font-size: 16px;
    }

    p.location {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-end {
        padding: 15px 0px 30px;
    }

    footer a {
        font-size: 12px;
    }

    header #toggle-nav ul.imp-link-menu li {
        margin-bottom: 6px;
    }

    header #toggle-nav .accordion .accordion-item {
        margin-top: 8px;
    }

    header #toggle-nav .accordion .accordion-item:last-child {
        margin-bottom: 8px;
    }

    header #toggle-nav .accordion .accordion-button {
        border-radius: 0;
        padding: 0 0 4px;
    }

    header .contact-info p.message {
        margin-top: 0px;
    }

    #exampleModal .modal-form-row .form-control {
        padding: 4px 0.75rem !important;
        border-radius: 4px !important;
        font-size: 12px;
    }

    #lead_form .col-12 {
        margin-top: 12px;
    }

    #exampleModal .modal-content {
        padding: 5px !important;
        border-radius: 6px !important;
    }

    #exampleModal .modal-header {
        padding: 0 10px;
    }

    #exampleModal .modal-body {
        padding: 22px 10px;
    }
    #exitIntentModal .modal-body {
        padding: 1rem;
    }
    #exitIntentModal h3{
        font-size: 14px !important;
    }
    #exitIntentModal .primary-button {
        margin: 0 !important;
        width: fit-content;
        padding: 6px 16px;
        font-size: 13px;
    }
    #exampleModal .modal-header .btn-close {
        padding: 9px !important;
        font-size: 9px !important;
        height: 0px;
        width: 0px;
    }

    /* pagination */
    .page-link {
        margin-right: 0px;
    }

    p,
    label,
    span,
    a,
    button {
        font-size: 12px;
    }

    .pagination {
        margin-bottom: 0;
    }

    /* page banner */
    .banner_wrapper .banner_title {
        text-align: center;
        font-size: 22px !important;
    }

    .banner_wrapper .banner_title span:first-child {
        border-bottom-left-radius: 10px;
        padding: 8px 12px;
    }

    .banner_wrapper .row {
        height: auto;
        padding: 30px 15px;
        text-align: center;
    }

    .banner_wrapper .banner_title span:last-child {
        padding: 0 15px 8px;
    }

    .banner_wrapper .content_center {
        text-align: center;
    }

    input#email {
        font-size: 13px;
    }

    .maindiv-product h3.product-box-heading {
        font-size: 12px !important;
    }

    .maindiv-product {
        gap: 20px;
    }

    .box-product {
        width: calc(33.3% - 14px) !important;
        margin: 0;
    }

    .copy-right {
        border-bottom: 1px solid #a2a2a2;
        padding-bottom: 20px;
    }

    /* blogs */
    .blog-cards-img {
        height: 105px;
    }

    /* Modal */
    #exampleModal .modal-content {
        padding: 5px !important;
    }

    .form-select,
    .form-input {
        font-size: 12px;
        color: #828a90;
        margin: 0px;
    }

    .form-input:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .form-input::placeholder {
        color: #000;
    }

    .product-box-title {
        height: 45px !important;
    }

    .product-box-heading {
        line-height: 15px;
    }

    .contact-info p.message {
        margin-top: 15px;
    }
}

@media only screen and (min-device-width: 552px) and (max-device-width: 768px) {
    .box-image img {
        /* height: 90px; */
    }

    .product-box-title {
        height: 60px !important;
    }

    .news-image {
        height: 200px;
    }

    .new-box {
        height: 140px;
        display: flex;
        align-items: center;
    }

    .social-media {
        margin-top: 0px;
    }

    p.copy-r {
        margin-top: 0px;
    }

    .br-tab-100 {
        width: 100%;
    }
}

@media screen and (max-width: 551px) {
    .maindiv {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 15px;
    }

    .maindiv-product,
    .counter-section .counter-div {
        gap: 15px;
    }

    .maindiv-product .box-product {
        width: calc(50% - 8px) !important;
    }

    ul.tabs-menu a {
        font-size: 11px;
        line-height: 20px;
        padding: 10px 12px;
    }

    .welcome-tab-section {
        margin-top: 30px;
    }

    .welcome-tab-section .nav-link {
        margin-bottom: 0px;
    }

    #our-products-tabsContent {
        margin-top: 0px;
    }

    .news-event-slider .owl-nav {
        bottom: -6px;
    }

    .banner_wrapper .banner_title {
        font-size: 16px !important;
    }

    .banner_wrapper .banner_title_mobile {
        margin-bottom: 0px;
    }

    .banner_wrapper .banner_title_mobile span {
        font-size: 21px;
        text-wrap: nowrap;
    }
}

.header_country_dropdown button {
    background: transparent;
    border: none;
}

.header_country_dropdown
    button:is(:hover, :focus, :visited, :active, :focus-visible) {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.header_country_dropdown img {
    width: 22px;
    height: auto;
}

.header_country_dropdown .dropdown-menu li.active a {
    color: #1e2125;
    background-color: #e9ecef;
}

#sidebar .nav-pills li .checkbox {
    -webkit-appearance: none;
    position: relative;
    top: -13px;
}

#sidebar .nav-pills li .checkbox:before,
#sidebar .nav-pills li .checkbox:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 8%;
    border: 2px solid #001233;
}

#sidebar .nav-pills li .checkbox:checked:before {
    top: 3.2px;
    left: 3.2px;
    width: 5px;
    height: 9px;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 2px solid #001233;
    border-bottom: 2px solid #001233;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 20% 40%;
    transform-origin: 100% 100%;
}

#exampleModal .modal-dialog {
    max-width: 650px;
}

#exampleModal .modal-form-row {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
}

#exampleModal.enquiry-modal {
    backdrop-filter: blur(10px);
    overflow: hidden;
}

span.error_msg {
    color: red;
    font-size: 11px;
    margin-top: 0px;
    display: block;
}

#exampleModal .modal-header {
    justify-content: center;
    align-items: center;
    padding: 8px 1rem 8px;
    border-bottom: none;
}

#exampleModal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
    display: block;
    width: 100%;
}

#exampleModal .modal-form-row .form-control {
    padding: 8px 0.75rem;
    border-radius: 7px;
}

#exampleModal .modal-form-row .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}

#exampleModal .modal-content {
    padding: 30px;
    border-radius: 15px;
}

#exampleModal .modal-footer {
    border: none;
}

#exampleModal .modal-header .btn-close {
    padding: 5px;
    border: 2px solid var(--theme-color);
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 15px;
    opacity: 1;
}

.form-input::placeholder {
    color: #000;
}

/* css from piyush */
@media screen and (max-width: 768px) {
    .footer-section .footer-end {
        padding: 0px 0px 0px;
    }

    .footer-section .social-media {
        margin-top: 0px !important;
    }

    .footer-section p.copy-r {
        margin-top: 0px !important;
    }

    .footer-end-row {
        gap: 20px;
    }

    .copy-right {
        border-bottom: 0px;
    }

    .sort-option {
        font-size: 12px;
    }

    li.page-item.disabled:not(:has(> a)) {
        border: none;
        color: var(--theme-color);
        border-radius: 4px;
        padding: 0px 8px 5px 0;
        margin-right: 5px;
        line-height: 1;
        margin-left: -10px;
    }
}

/* css from piyush  end */

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    margin-top: 1px !important;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
