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

body {
    color: #000000;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    font-family: "Satoshi-Regular", sans-serif;
    position: relative;
    --screen-width: calc(100vw - (100vw - 100%));
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

html {
    overflow-x: hidden;
}

h1 {
}

h2 {
}

h3, .h3 {
    font-size: 54px;
    margin: 0;
}
.h3 {
	
	font-family: "Satoshi-Black", sans-serif;
}
h4, .h4 {
    font-size: 20px;
    margin: 0;
}

h5, .h5 {
    font-size: 20px;
    margin: 0;
}

h6, .h6 {
    font-size: 16px;
    margin: 0;
    ; }

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

a, a:hover {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

ul {
    margin: 0px;
    padding: 0;
}

.clearfix:before,.clearfix:after {
    content: '';
    display: table;
}

.clearfix:after {
    clear: both;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Satoshi-Medium";
    src: url("Satoshi-Medium.ttf") format('truetype');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: "Satoshi-Black";
    src: url("Satoshi-Black.ttf") format('truetype');
    font-style: normal;
    font-weight: 900;
}
@font-face {
    font-family: "Satoshi-Bold";
    src: url("Satoshi-Bold.ttf") format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Satoshi-Regular";
    src: url("Satoshi-Regular.ttf") format('truetype');
    font-style: normal;
    font-weight: 400;
}

/**********animation**********/
@media (prefers-reduced-motion: no-preference) {
    .animate-this {
        opacity: 0;
        transform: translateY(50px);
    }

    .animate-this.animated {
        animation: fade-in 0.8s ease-in-out forwards;
    }

    .animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }

    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }

    .animate-this.lft {
        opacity: 0;
        transform: translateX(-20px);
    }

    .animate-this.animated.lft {
        animation: fade-in-left 0.8s ease-in-out forwards;
    }

    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }

    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    @keyframes fade-in-left {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}

@keyframes tp-animate {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}
/*****header*****/
.container {
    padding: 0px 20px;
}
.container-fluid { padding: 0px 20px; }
.header {
    padding: 40px 0px 0;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}
.header.stick {
    position: fixed;
    top: 0;
    width: 100%;
}
.header.stick .navbar-collapse{
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.logo {
    width: 240px;
    position: relative;
    padding-right: 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.logo a{
	position: relative;
}
.logo img {
    width: 100%;
}
a:focus-visible {
    outline: none;
}
.navbar {
    padding: 0;
    flex-wrap: wrap;
}
.navbar-collapse {
    width: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0px 20px;
	justify-content: space-between;
}
.nav-menu {
    gap: 35px;
    justify-content: center;
    align-items: center;
}
.nav-menu li a {
    color: #000000;
    padding: 0;
	font-family: "Satoshi-Medium", sans-serif;
	text-transform: capitalize;
}
.nav-menu > li:last-child a{
	background-image: linear-gradient(to right, #FE0200, #B32322);
    padding: 13px 40px 14px;
    color: #FFFFFF;
    font-size: 18px;
    font-family: "Satoshi-Bold", sans-serif;
    display: inline-block;
    border-radius: 100px;
    width: 170px;
    text-align: center;
}
.nav-menu li.active a{
	font-weight: Bold;
	font-family: "Satoshi-Bold", sans-serif;
}
.navbar_main {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar_top {
    padding-bottom: 10px;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.products-megamenu {
			position: static !important;
		}

		.products-megamenu .megamenu-content {
			width: 100%;
			max-width: 1100px;
			left: 50% !important;
			transform: translateX(-50%) !important;
			top: 100%;
			border-radius: 20px;
			overflow: hidden;
			margin-top: 15px;
			border: none;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
			z-index: 9999;
		}

		.megamenu-left {
			background-color: #f5f1f3;
			border-right: 1px solid #f0f0f0;
			padding: 20px;
		}

		.category-tabs .nav-link {
			text-align: left;
			padding: 16px 25px !important;
			color: #245DC1;
			font-weight: 700;
			border: none;
			border-radius: 8px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			transition: all 0.3s ease;
			margin-bottom: 10px;
			background: #FFFFFF;
			font-size: 18px;
			width: 100%;
		}
	

		.category-tabs .nav-link.active {
			background: #245DC1;
			color: #fff !important;
		}
		.category-tabs .nav-link.active a {
			color: #fff !important;
		}

		.category-tabs .nav-link .arrow-icon {
			width: 28px;
			height: 28px;
			background: #245DC1;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.category-tabs .nav-link.active .arrow-icon {
			opacity: 1;
			background: #fff;
		}
		.category-tabs .nav-link .arrow-icon img {
			width: 14px;
			  filter: brightness(0) invert(1);
		}
		.category-tabs .nav-link.active .arrow-icon img {
			width: 14px;
			filter: brightness(0) saturate(100%) invert(32%) sepia(68%) hue-rotate(204deg) saturate(3100%) brightness(88%) contrast(90%);
		}


	

		.megamenu-right {
			padding: 40px;
			background-color: #fff;
		}
	.megamenu-content{
		padding: 0;
	}
		.product-list li a {
			color: #333;
			font-size: 16px;
			font-weight: 700;
			display: inline-block;
			padding: 7px 0;
			transition: all 0.3s ease;
			text-decoration: none;
			border-bottom: 1px solid  #333;
			
		}

		.product-list li a:hover {
			color: #245DC1;
			border-bottom-color: #245DC1;
			display: inline-block;
		}

.comon-padd { padding: 55px 0px; }
.blog-card {
	height: 100%;
}

.blog-card-image {
    position: relative;
    padding-bottom: 55%;
}

.blog-card-image>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    z-index: 9;
}
.blog-decs{
	padding: 0px 20px; 
}
.categories a {
    font-size: 20px;
    font-weight: 400;
    font-family: "Satoshi-Regular", sans-serif;
}

.single_blogs {
    background: rgba(0, 46, 3, 0.05);
}

.single_blogs article {
    padding: 15px 15px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-main {
    padding: 0px 50px;
}

.banner_main { position: absolute; left: 0; right: 0; top: 50%; width: 100%;    transform: translateY(-40%); }
.banner_inn { max-width: 800px; }
.banner_inn h6 { background: #0C665F80; border-radius: 12px; padding: 14px 32px; font-size: 22px; 
color: #FFFFFF; margin-bottom: 10px; display: inline-block; }
.banner_inn h1 { color: #FFFFFF; margin-bottom: 30px; }
a.btn-white { background: #FFFFFF; padding: 15px 30px 17px; color: #01340F; font-size: 18px;  font-family: "Satoshi-Bold", sans-serif; display: inline-block; }
a.btn-white span { display: flex; gap: 6px; }
a.btn-white span img { width: 17px !important;    margin-top: 4px; }
/**********nav-icon**********/
.nav-icon { display: none; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; -o-transition: .5s ease-in-out; transition: .5s ease-in-out; cursor: pointer;	z-index: 9;	width: 24px;
 height: 20px; position: absolute; top: 25px; right: 33px;  border-radius:4px; }
.nav-icon span{display: block; position: absolute; height: 2px; background: #1A3052; opacity: 1; left: 6px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg);
-o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out;	-o-transition: .25s ease-in-out; transition: .25s ease-in-out;}
.nav-icon span:nth-child(1) 	{ top: 0px;	width:24px; right: 0px;	left: auto;}
.nav-icon span:nth-child(2)	{top: 8px; width:24px;  right: 0px;  left: auto;}
.nav-icon span:nth-child(3)	 { top: 16px; width:24px;  right: 0px;  left: auto;}
.nav-icon.open span:nth-child(1){top: 8px;    right: 0px; -webkit-transform: rotate(135deg);	-moz-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg);}
.nav-icon.open span:nth-child(2){ 	opacity: 0; }
.nav-icon.open span:nth-child(3){top: 10px;-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -o-transform: rotate(-135deg);transform: rotate(-135deg);    right: 0px;  top: 8px;	}

.blog-excerpt{ 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.industry_sec {
	background: url('../images/main-bg.webp') no-repeat;
	background-size: cover;
}
.single_blogs, .blog-slider {
	background: url('../images/main-bg.webp') no-repeat;
	background-size: cover;
}
.title {
	max-width: 945px;
	margin: 0 auto;
}
.h3 {
    background: #245DC1;
    background: linear-gradient(to right, #245DC1 0%, #112C5B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
	font-size: 60px;
	font-family: "Satoshi-Black", sans-serif;
	margin-bottom: 15px;
	text-transform: capitalize;
	line-height: 1.29;
	    display: inline-block;
}
.h4 {
	font-weight: 700;
	font-size: 26px;
	font-family: "Satoshi-Bold", sans-serif;
}
.blog-title {
	margin-bottom: 12px;
	text-transform: capitalize;
}
.read-link{
	padding-top: 10px;
	border-top: 1px solid rgba(0,0,0,0.3);
}
a.read-more{
	color: #245DC1;
	font-size: 16px;
	font-family: "Satoshi-Bold", sans-serif;
	text-decoration: underline;
	margin-right: 40px;
	display: flex;
	align-items: center; 
	justify-content: space-between;
}
a.read-more img{
    width: 34px !important;
}
.blog-title-left {
	max-width: 840px;
}
.blog-title {
	gap: 30px;
	align-items: flex-end;
	justify-content: space-between;
}
.blog-title p{
	margin-bottom: 0;
}
.blog-carousel .owl-dots, .prdocut_slider .owl-dots, .presence-slider .owl-dots,
.product-slider .owl-dots, .home-industry-slider .owl-dots, .related-carousel .owl-dots{
    margin-top: 30px;
    text-align: center;
    display: block !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.blog-carousel .owl-dots .owl-dot span, .prdocut_slider .owl-dots .owl-dot span, 
.presence-slider .owl-dots .owl-dot span , .product-slider .owl-dots .owl-dot span 
, .home-industry-slider .owl-dots .owl-dot span, .product-sliders .owl-dots .owl-dot span,
.related-carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    background: rgba(0, 46, 3, 0.3);
    display: block;
    border-radius: 50%;
    margin: 0 4px;
}
.blog-carousel .owl-dots .owl-dot.active span, .prdocut_slider .owl-dots .owl-dot.active span, 
.presence-slider .owl-dots .owl-dot.active span, .product-slider .owl-dots .owl-dot.active span , 
.home-industry-slider .owl-dots .owl-dot.active span,
.product-sliders .owl-dots .owl-dot.active span, .related-carousel .owl-dots .owl-dot.active span {
    background: #002D03;
	 width: 10px;
    height: 10px;
}
.product-sliders .owl-dots {
    margin: 10px 0;
    text-align: center;
    display: block !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    bottom: -12px;
    position: absolute;
    left: 0;
    right: 0;
}
.presence_box{
	display: flex;
	background: #FFFFFF;
	border-radius: 40px;
	padding: 12px;
	gap: 40px;
	align-items: center;
	height: 100%;
}
.presence_img, .presence_text{
	width: 50%;
}
.presence_text h6 {
	font-size: 26px;
	font-family: "Satoshi-Medium", sans-serif;
}
.presence_img img {
	width: 100%;
	border-radius: 40px;
}
/*****footer*****/
.footer {
    background: #E9EFF9;
    padding: 40px 0;
}
.footer-main {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 30px 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.footer-row {
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-logo {
    max-width: 230px;
}
.footer-logo img {
    width: 100%;
}
.footer-text p {
	text-align: right;
	font-family: "Satoshi-Medium", sans-serif;
}
.footer_links h4 {
    font-size: 20px;
    font-family: "Satoshi-Black", sans-serif;
    margin-bottom: 15px;
}
.footer_links ul li {
    display: block;
	    line-height: 30px;
	    text-transform: capitalize;
}

.footer_links ul li a {
    color: rgba(0, 0, 0, 0.9);
    
}
.footer_links ul li a:hover{
	color: #245DC1;
}

.social-media {
    gap: 10px;
    justify-content: flex-end;
}

.social-media a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #245DC133;
    border-radius: 100px;
}
.social-media a:hover{
	background-color: #FFFFFF;
}
.social-media a:hover img {
     filter: invert(1) brightness(0);
}

.social-media a img {
    width: 24px;
}
.footer-btmrow {
    padding: 20px 0px;
    align-items: center;
}

.footer-btmrow p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.footer-btmrow p a {
    color: rgba(0,0,0,0.6);
}
.footer_mainlinks{
	gap: 65px;
}
.footer_links:last-child{
	width: 40%;
}
.footer-contact a, .footer-contact p {
	display: flex; 
	gap: 10px;
	align-items: center;
	color: rgba(0, 0, 0, 0.9);
	margin-bottom: 10px;
}
.footer-contact span, .footer-contact a span{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #245DC133;
	border-radius: 8px;
	    flex-shrink: 0;
}
.footer_btmain {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0 0;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer_btmain p {
	color: rgba(0,0,0,0.6);
	font-family: "Satoshi-Bold", sans-serif;
}
.footer_btmain ul{
	gap: 15px;
}
.footer_btmain ul li{
	display: inline-block;
}
.footer_btmain ul li a{
	color: #112C5B;
	text-decoration: underline;
	font-family: "Satoshi-Bold", sans-serif;
}
.language-switcher{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:8px;
    padding: 5px 12px;
    background:#fff;
    width: 180px;
    margin-left: auto;
    margin-bottom: 15px;
}
.lang-icon{
    margin-right:6px;
}
.lang-icon img {
	width: 25px;
}
.lang-dropdown{
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
    cursor:pointer;
    width: calc(100% - 20px);
        padding: 9px 10px;
}
.ready-container {
	position: absolute; 
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	padding: 10px 0 0;
}
.ready-container .h3 {
	color: #FFFFFF; 
	font-family: "Satoshi-Regular", sans-serif;
	font-weight: 300;
	    background: transparent;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
	font-size: 36px;
}
.ready-container .h3 strong {
	display: block;
	font-family: "Satoshi-Black", sans-serif;
	font-size: 46px;
}
.ready-container p{
	color: #FFFFFF; 
	max-width: 850px;
	margin: 0 auto;
}
a.btn-outline {
    border: 1px solid #245DC1;
    border-radius: 12px;
    padding: 12px 35px 14px;
    text-align: center;
    color: #235BBE;
    font-size: 16px;
    font-family: "Satoshi-Bold", sans-serif;
	display: inline-block;
}
.ready_main a.btn-white {
	border-radius: 12px;
	color: #2258B7;
	    padding: 11px 25px 11px;
}
/*.contact_sec { background: url('../images/contact-bg.png') no-repeat; background-size: cover; }*/
.contact_sec .container { position: relative; }
.contact_row { position: absolute; left: 0; top: 0; padding: 30px 50px; }
.contact-image { border-radius: 24px; }
.contact-image img { border-radius: 24px; height: 750px; object-fit: cover; }
.contact-text .h3 { font-family: "Satoshi-Regular", sans-serif; font-weight: 300; background: transparent;
 -webkit-background-clip: inherit; -webkit-text-fill-color: inherit; color: #FFFFFF; }
.contact-text h2 strong { display: block;  font-family: "Satoshi-Black", sans-serif; }
.contact-text { display: flex; flex-direction: column; justify-content: space-between; 
height: 100%; padding-bottom: 60px; }
.contact-text p { color: #FFFFFF; }
.contact-text-btm { flex-wrap: wrap; gap: 50px; }
.contact-grid { width: 45%; }
.contact-grid h4 { color: #FFFFFF; font-family: "Satoshi-Black", sans-serif; margin-bottom: 7px; }
.contact-grid p { color: #FFFFFF; }
.contact-grid ul li { display: block; }
.contact-grid ul li a { color: #FFFFFF; text-decoration: underline; }
.contact-grid a { color: #FFFFFF; }
.contactpage_form { background: #FFFFFF; padding: 35px 30px; border-radius: 12px; }
.contactpage_form h3 {  color: #050505; font-size: 30px; font-family: "Satoshi-Black", sans-serif; }
.contactpage_form p {  color: #050505; }
.form div.halfs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

input, select {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.5);
}
 select {
    padding: 12px 15px;
}
textarea {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.5);
    height: 120px;
}

input[type=submit] {
    background-image: linear-gradient(to right, #245DC1, #112C5B);
    border: 0;
    padding: 12px 50px 13px;
    display:block;
    font-family: "Satoshi-Bold", sans-serif;
    text-align: center;
    color: #FFFFFF;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius:12px;
    width: auto;
    margin-top: 8px;
	width: 100%;
}

input[type="checkbox"][name="your-consent"] {
    display: none;
}

/* Label styling */
input[type="checkbox"][name="your-consent"] + .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
}

/* Custom box */
input[type="checkbox"][name="your-consent"] + .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    background: transparent;
    transition: 0.3s;
}

/* Tick mark */
input[type="checkbox"][name="your-consent"]:checked + .wpcf7-list-item-label::after  {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 7px;
        width: 5px;
        height: 11px;
        border: solid #000;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
input::placeholder, textarea::placeholder{
	color:  #000000;
}
.wpcf7-list-item{
	margin: 0;
}
.contact_desc {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.map_sec iframe {
    display: block;
}
.map_main {
    position: absolute;
    left: 0px;
    bottom: 30px;
	width: 100%;
}
.map_box  {
	padding: 25px 25px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    border-radius: 12px;
	position: relative;
}
.map_box h5 {
    color: #3B3B3B;
    font-size: 28px;
    font-family: "Satoshi-Medium", sans-serif;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.map_box p {
    font-size: 16px;
    color: #000000;
    font-family: "Satoshi-Medium", sans-serif;
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
}
.map_box p img {
    width: 24px;
}
.map_box a {
    border: 1px solid #151515;
    color: #1F1F1F;
    font-size: 16px;
    padding: 11px 24px 12px;
    display: inline-block;
    border-radius: 14px;
    position: absolute;
    right: 30px;
    top: 20px;
}
.map_box a img {
    width: 13px;
    margin-top: -2px;
    margin-left: 2px;
}
.connect_box {
	background: #2259B90D;
	padding: 25px 25px;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
	border-radius: 12px;
}
.connect_img {
	width: 35px;
}
.connect_txt h6{
	color: #3B3B3B;
	font-family: "Satoshi-Bold", sans-serif;
	text-transform: capitalize;
}
.connect_txt p{
	color: rgba(0, 0, 0, 0.5);
	margin: 0;
}
.accordion-header {
	color: #3B3B3B;
	font-family: "Satoshi-Bold", sans-serif;
}
.accordion-header button {
	font-size: 20px;
	padding: 22px 0;
	border-radius: 0 !important;
}
.accordion-button:not(.collapsed){
	color: #3B3B3B;
	background-color: #FFFFFF;
	box-shadow: none;
}
.accordion-body {
	padding: 20px 0;
}
.accordion-body p {
	color: rgba(0, 0, 0, 0.5);
}
#faqAccordion .accordion-body {
    padding: 0 0 20px;
}

.accordion-item {
    border: 0;
	border-bottom: 1px solid  rgba(0, 0, 0, 0.3);
}
.faq-hold{
	padding-left: 20px;
}
.company_row{
	z-index: 9;
}
.company_sec {
    overflow: hidden;
}
.company_sec .h4 {
	color: #000000;
	margin-bottom: 10px;
}
.company_image{
	margin-top: -395px;
}
.why_sec{
	background: url('../images/why-bg.webp') no-repeat;
	background-size: cover;
}
.whymain {
	position: relative;
    padding: 60px 0 0;
}
.whybox-image {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    max-width: 580px;
    margin: 0 auto;
}
.whybox-image img{
	width: 100%;
}
.whybox {
	margin-bottom: 60px;
	max-width: 331px;
}
.whyimage {
	background: linear-gradient(#245DC1, #112C5B);	
	width: 80px;
	height: 80px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.whytxt h5{
	font-family: "Satoshi-Bold", sans-serif;
	margin-bottom: 10px;
}
.why-row .col-md-6:nth-child(even) .whybox{
	margin-left: auto;
}
.why-row:last-child .whybox{
	margin: 0;
}
.product-menu {
    position: relative;
}
.main-menu {
    list-style: none;
    padding: 6px 26px 6px 20px;
    margin: 0;
    display: flex;
    gap: 20px;
	border-radius: 60px;
}
.main-menu-item {
    position: relative;
}
.main-menu-item > a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #333;
}
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
    padding: 20px;
    border-radius: 8px;
    z-index: 100;
    display: flex;
    gap: 30px;
}
.mega-left, .mega-right {
    width: 50%;
}

.mega-left ul, .mega-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-left li {
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    color: #2f66c7;
}
.mega-right li {
    padding: 8px 0;
}
.mega-right li a {
    color: #444;
    text-decoration: none;
}
.main-menu-item:hover .mega-menu-dropdown {
    display: flex;
}


.industry-tabs{
	width: 39%;
	border: 1px solid #FFFFFF;
	padding: 20px 15px;
	border-radius: 12px;
	background: rgba(255,255,255,0.8); 
}
.industry-scroll{
	overflow-y: scroll;
    height: 510px;
    padding-right: 15px;
}
.industry-scroll::-webkit-scrollbar {
    width: 4px
}
.industry-scroll::-webkit-scrollbar-track {
    background: #0C665F1A;
}
.industry-scroll::-webkit-scrollbar-thumb {
    background-color: #A90A0C;
    border-radius: 5px
}
.industry-tabs .industry-tab{
	background: #FCF5F6;
	border-radius: 6px;
	padding: 20px 18px;
	color: #000000;
	text-transform: uppercase;
	font-family: "Satoshi-Bold", sans-serif;
	margin-bottom: 10px;
	cursor: pointer;
}
.industry-content {
	width: 59%;
}

.industry-tab.active {
    font-weight: bold;
	background: #A90A0C;
	color: #FFFFFF;
}
.industry-content {
	color: #FFFFFF;
}
.industry-content img{
	width: 100%;
	border-radius: 12px;
	height: 250px;
	margin-bottom: 15px;
	object-fit: cover;
}
.industry-content h4{
	margin-bottom: 10px;
}
.industry-pane {
    display: none;
}
.industry-pane.active {
    display: block;
}
.industry-content a.btn-white{
	border-radius: 12px;
	    color: #4E1C26;
}
.home-industry-slider .industry-image {
	position: relative;
	padding-bottom: 125%;
}
.home-industry-slider .industry-image:before {
	content:'';
	position: absolute;
	left:0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, #00000000, #000000);
	z-index: 9;
	border-radius: 26px;
	border: 2px solid #FFFFFF;
}
.home-industry-slider .industry-image > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 2px solid #FFFFFF;
	border-radius: 26px;
}
.home-industry-slider .industry-box{
	position: relative;
}
.home-industry-slider .industry-txt{
	position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
	    padding: 20px 18px;
	z-index: 9;
}
.home-industry-slider .industry-txt h4{
	font-size: 20px;
	color: #FFFFFF;
	padding-bottom: 10px;
}
.home-industry-slider .industry-txt .read-link {
    padding-top: 10px;
    border-top: 1px solid #FFFFFF;
}
.home-industry-slider .industry-txt .read-link a.read-more {
	color: #FFFFFF;
	justify-content: space-between;
    margin: 0;
}
.technology_sec , .product_avlon, .presence_sec {
	background: url('../images/technology-bg.png') no-repeat;
	background-size: cover;
}
.home-industry {
	background: url('../images/home-industry-bg.webp') no-repeat;
	background-size: cover;
}
.technology_image img{
	border-radius: 40px;
}
.technology_scroll{
	overflow-y: auto;
    height: 240px;
    padding-right: 15px;
}
.technology_scroll::-webkit-scrollbar {
    width: 4px
}
.technology_scroll::-webkit-scrollbar-track {
    background: rgba(36, 94, 194, 0.2);
}
.technology_scroll::-webkit-scrollbar-thumb {
    background-color: #245DC1;
    border-radius: 5px
}

.prdocut_slider .owl-item {
	transform: scale(0.95);
}
.prdocut_slider .owl-item.active {
	transform: scale(1);
}
.product_image {
	aspect-ratio: 2 / 1;
}
.product_image img {
	border-radius: 24px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product_avlon .product_image img {
	height: 250px;
	object-fit: contain;
}
.product_txt{
	position: absolute;
	left: 11px;
    bottom: 13px;
    width: 98%;
	background: #FFFFFF;
	border-radius: 24px;
	padding: 20px 20px;
}
.product_txt h4 {
	color: #000000;
	margin-bottom: 7px;
	text-transform: uppercase;
}
.prdocut_slider .category-description{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	width: 78%;
}
.technology_scroll .category-description p:last-child{
    margin: 0;
}
.term-water-treatment-equipment .technology_scroll {
    height: 225px;
}

.prdocut_slider .product_txt a.btn-outline{
	position: absolute;
	right: 11px;
    bottom: 13px;
}
.nav-menu li a.dropdown-item{
	padding: 0px 10px;
}
.presence_text .scroll-desc{
	overflow-y: auto;
    height: 320px;
    padding-right: 15px;
}
.scroll-desc::-webkit-scrollbar {
    width: 4px
}
.scroll-desc::-webkit-scrollbar-track {
    background: rgba(36, 94, 194, 0.2);
}
.scroll-desc::-webkit-scrollbar-thumb {
    background-color: #245DC1;
    border-radius: 5px
}
.vision_box {
	background: url('../images/vision-bg.webp') no-repeat;
	background-size: cover;
	border-radius: 24px;
	padding: 40px 40px;
}
.vision_icon{
	width: 70px;
	height: 70px;
	border-radius: 20px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.vision_icon img{
	width: 40px;
}
.vision_text h4 {
	color: #FFFFFF;
	margin-bottom: 10px;
}
.vision_text p {
	color: #FFFFFF;
	margin: 0;
}
.vision_col:nth-child(2) .vision_box {
	background: url('../images/Mission Column.webp') no-repeat;
	background-size: cover;
}
.vision_col:nth-child(2) .vision_icon{
	background-image: linear-gradient(to top, #245DC1, #112C5B);
}
.vision_col:nth-child(2) .vision_box .vision_text h4 {
	color: #000000;
}
.vision_col:nth-child(2) .vision_box .vision_text p {
	color: #000000;
}
.vision_box .scroll-desc{
	overflow-y: auto;
    height: 100px;
    padding-right: 15px;
}
.values_sec {
        background: url(../images//light-bg.webp) no-repeat;
        background-size: cover;
}
.values_sec .title {
    max-width: 1145px;
}
.values_sec .title h4 {
    font-size: 30px;
    font-family: "Satoshi-Bold", sans-serif;
    margin-bottom: 10px;
}
.value_box {
	display: flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background: #FFFFFF;
	border-radius: 24px;
	padding: 20px 20px;
	gap: 20px;
}
.value_box .faq-hold {
    padding-left: 0px;
}
.value_acordian{
	width: 50%;
	overflow-y: auto;
    height: 650px;
    padding-right: 15px;
}
.value_acordian::-webkit-scrollbar {
    width: 4px
}
.value_acordian::-webkit-scrollbar-track {
    background: rgba(36, 94, 194, 0.2);
}
.value_acordian::-webkit-scrollbar-thumb {
    background-color: #245DC1;
    border-radius: 5px
}
.value_image{
	width: 50%;
	margin: 0px 20px;
}
.value_image img{
    height: 100%;
}
.value_box .accordion-button::after {
	background-image: url('../images/arrow_circle.svg');
	background-size: 30px;
    width: 30px;
    height: 30px;
}
.value_box .accordion-header button {
    padding: 18px 18px;
}
.value_box .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #245DC1;
	    border-radius: 6px !important;
}
.value_acordian .accordion-button:not(.collapsed)::after{
	background-image: url('../images/arrow_circle_white.svg');
	background-size: 30px;
    width: 30px;
    height: 30px;
	    transform: rotate(0deg);
}
.value_box .accordion-body p{
	color: #000000;
}
.product_box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    margin-bottom:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}
.product_box > a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.product_image img{
    width:100%;
    border-radius:8px;
}
.prdocut_slider .product_image img{
    border-radius: 24px;
}
.product_txt h4{
    margin-top:15px;
    font-size:20px;
}
.product_txt p{
    font-size: 16px;
    margin:10px 0;
}
.btn-outline{
    border:1px solid #0056ff;
    padding:8px 20px;
    display:inline-block;
    text-decoration:none;
}

.product-decs h4{
    margin-bottom: 8px;
    font-family: "Satoshi-Black", sans-serif;
    text-transform: uppercase;
}
.category-banner img{
    width: 100%;
    border-radius: 40px;
}
.price_box {
    background: #F1F5F7;
    border-radius: 40px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
        justify-content: space-between;
}
.price_box .h3{
    font-size: 32px;
    margin-bottom: 10px;
}
.product_desc{
    border-right: 1px solid rgba(0,0,0,0.1);
    width: 79%;
    padding-right: 30px;
    margin-right: 20px;
}
.product_desc p{ 
    margin: 0;
}
a.btn-orange{
    background-image: linear-gradient(to right, #FE0200, #B32322);
    padding: 13px 28px 15px;
    color: #FFFFFF;
    font-size: 18px;
    font-family: "Satoshi-Medium", sans-serif;
    display: inline-block;
    border-radius: 12px;
    text-align: center;
}
.specification_section{
    background: url('../images/table-bg.webp') no-repeat;
	background-size: 100% 100%;
}
.new_technology .title .h3, .key_features .h3 {
     background: linear-gradient(to right, #245DC1 0%, #112C5B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.new_technology , .key_features  {
    background: url('../images/bg1.webp') no-repeat;
	background-size: 100% 100%;
}
.specification_section .h4{
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 15px;
    font-size: 30px;
}

.feature_main{
    display: flex;
	position: relative;
	border-radius: 24px;
	background: url('../images/feature-bg.webp') no-repeat;
	background-size: cover;
	padding: 30px 0px;
}

.feature_box{
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,0.2);
    width: 20%;
}
.feature_box:last-child{
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0;
}
.feature_box img{
    width: 80px;
    margin-bottom: 12px;
}
.feature_box h5{
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 18px;
}
.card-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}
.card-box > img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius: 24px;
    margin-bottom: 20px;
}
.card-content{
    padding:20px;
}
.card-box{
    height: 100%;
    padding: 15px;
}
.card-col:nth-child(1) .card-box img{
    height: 100%;
    object-fit: contain;
}
.card-txt h4{
    font-family: "Satoshi-Black", sans-serif;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.specification_section p{
    padding-bottom: 5px;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    margin: 0;
}
.specification_section p span{
    width: 45%;
    text-align: center;
    margin-left: auto;
    display: block;
    border-left: 1px solid #FFFFFF;
}
.tablepress thead>tr>* .dt-column-header .dt-column-title	
 {
    font-size: 13px;
}
	.tablepress>:not(caption)>*>* {font-size: 13px; }
.tablepress>:where(thead,tfoot)>tr>* {
    background-color: transparent !important;
    color: rgba(255,255,255,0.8) !important;
    font-weight: 700 !important;
	}

.tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child,.dtrg-group)))+:where(.child)>*, .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child,.dtrg-group)))>* {
    background-color: transparent !important;
    color: #FFFFFF !important;
     font-weight: 700 !important;
}
.tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child,.dtrg-group)))+:where(.child)>*, .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child,.dtrg-group)))>*{
    background-color: transparent !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
}
.tablepress>:where(thead)+tbody>:where(:not(.child))>*, .tablepress>tbody>*~:where(:not(.child))>*, .tablepress>tfoot>:where(:first-child)>* {
    border-top: 1px solid #FFFFFF !important;
}
.tablepress {
    border-bottom: 1px solid #FFFFFF !important;
}
table caption{ display: none; }

.team-modals .modal-dialog {
    max-width: 1070px;
}
.team-modals .modal-image {
	max-width: 350px;
}
.team-modals .modal-text {
	padding-left: 20px;
}
.team-modals .modal-text h3 {
	font-size: 32px;
	margin-bottom: 5px;
}
.team-modals .modal-text span{
	color: rgba(14, 16, 37, 0.6);
    margin-bottom: 10px;
    display: block;
}
.modal {
    z-index: 9999;
    background: rgba(0,0,0,0.5);
}
.modal-content{
    border-radius: 24px;    
    padding: 30px 30px;
}
.modal-open{
    overflow: hidden !important;
    padding-right: 0 !important;
}
.modals-content {	
    overflow-y: scroll;
    height: 350px;
    padding-right: 15px;
}
.modals-content::-webkit-scrollbar {
    width: 4px
}
.modals-content::-webkit-scrollbar-track {
    background: rgba(36, 94, 194, 0.2);
}
.modals-content::-webkit-scrollbar-thumb {
    background-color: #245DC1;
    border-radius: 5px
}
.detail-image{
    background: #D3D3D333;
    border-radius: 40px;
    padding-bottom: 20px;
}

.product-slider .product_image {
    aspect-ratio: 1.9 / 1 ;
}
.product-slider .product_image img {
   object-fit: contain;
}
.product-sliders img {
   object-fit: contain;
   height: 400px;
}
#tablepress-7 tr th{
    color: #ffffff !important;
}
.page-template-home .product_box {
    margin-bottom: 0;
}
.powerplants{
	background: url('../images/bg1.webp') no-repeat;
	background-size: 100% 100%;
}
.powerplant-box{
	background: #FFFFFF;
	padding: 12px 12px;
	border-radius: 40px;
	box-shadow:0 5px 15px rgba(0,0,0,0.1);
	gap: 10px;
}
.powerplant-box:nth-child(odd){
	    flex-direction: row-reverse;
}
.powerplant-image{
	width: 50%;
}
.powerplant-image img{
	width: 100%;
	border-radius: 40px;
}
.powerplant-desc {
	width: 50%;
	padding: 0px 30px;
}
.bottom_main{
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.bottom-desc{
	width: 50%;
}
.future_main{
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	top: 15%;
}
.future-text{
	width: 56%;
	margin-left: auto;
}
.future-text h3{
	max-width: 400px;
}
.future-text h5{
	font-family: "Satoshi-Bold", sans-serif;
	font-size: 18px;
}
.carousel img{
    height: 690px;
    object-fit: cover;
}
.product_avlon  {
    background: url(../images/indutry-bg.webp) no-repeat;
    background-size: cover;
}
.home-product-main {
    border-radius: 24px;
    padding: 23px 23px;
    border: 1px solid #999999;
    gap: 20px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(24px);
    flex-wrap: wrap;
}
.product_avlon .title .h3 {
	color: #FFFFFF; 
	font-family: "Satoshi-Black", sans-serif;
	background: transparent;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
.product_avlon .title p {
	color: rgba(255,255,255,0.9); 
}
.product_avlon .product_image  {
	background: #FFFFFF;
	border-radius: 40px;
	aspect-ratio: auto;
}
a.contact-btn {
    background-image: linear-gradient(to right, #245DC1, #112C5B);
    padding: 15px 45px 16px;
    display: inline-block;
    font-family: "Satoshi-Bold", sans-serif;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 12px;
    width: auto;
    margin-top: 15px;
}
.newproduct_avlon .product_box {
    margin: 18px 0;
}
.woocommerce-breadcrumb {
    font-size: var(--base-size) !important;
    color: #fff !important;
    margin-top: 5px;
	justify-content: center;
}
.woocommerce-breadcrumb a {
    color: #fff !important;
    text-decoration: none;
}
.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}
.woof_list_label .woof_label_term {
    background-color: #fff;
    padding: 3px 19px;
    height: 40px;
        border-radius: 22px;
}
.woof_list_label li .woof_label_term:hover, .woof_list_label li .woof_label_term.checked {
    background-color: #000;
    border-color: #000;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    margin: 0 1.5% 0.992em 0;
    width: 31.8%;
}
.tinv-wraper.tinv-wishlist {
    font-size: 100%;
    float: right;
}
.tinv-wraper.tinv-wishlist {
    font-size: 100%;
    float: right;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: flex;
   align-items: center;
    justify-content: center;
    border: 1px solid #0000001A;
    border-radius: 100px;
}
ul.products li.product .tinvwl_add_to_wishlist_button{
    margin: 0;
}
.products .product-card product-img{
    border: 1px solid #000000;
}
.product-title a{
    font-weight: 700;
    color: #000000;
}
.product-card{
    border-radius: 24px;
}
.hero h1{
    text-transform: uppercase;
}
.details_row h1.h3{
    text-transform: uppercase;
}
.postid-547 .details_row_left h1.h3{
    max-width: 510px;
}
.postid-548 .details_row_left h1.h3{
    max-width: 488px;
}
.postid-550 .details_row_left h1.h3 {
    max-width: 495px;
}
.postid-546 .details_row_left h1.h3{
   max-width: 540px;  
}
.postid-510 .details_row_left h1.h3{
   max-width: 540px;  
}
.details_row_left{
    padding-right: 10px;
}
.new_technology .product_txt h4 {
    text-transform: capitalize;
}
.newproduct_avlon  {
    background: url(../images/technology-bg.png) no-repeat;
    background-size: cover;
}
.term-coal-biomass-wte-powerplants .powerplants .h3{
    max-width: 700px;
}
.site-sidebar .sidebar-toggle {
    position: relative !important;
    top: 0;
    right: 0;
    background: transparent;
    color: #000;
        padding: 0;
        width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 30px;
}
.site-sidebar .woof_container_product_tag {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.woocommerce .woocommerce-ordering select {
    background: transparent;
    border: 0;
    width: auto;
}
.woocommerce .woocommerce-ordering select:focus-visible {
    border: 0;
    outline: none;
}
.view-toggle{
    background: #0B72B51A;
    padding: 5px 0px;
}
.woocommerce .shop-top-bar {
    margin-bottom: 10px;   
}
.woocommerce .shop-top-bar .woocommerce-ordering {
    margin: 0;
}
.woocommerce .shop-top-bar .woocommerce-result-count {
    margin: 0;
}
.woocommerce .shop-top-bar .grid-view{
   
	background: url('../images/segment-filter.svg') no-repeat;
    color: #0B72B51A;
         background-position: -2px 5px;
}
.woocommerce .shop-top-bar .list-view{
     background: url('../images/grid-view-filter.svg') no-repeat;
    color: #0B72B51A;
        background-position: 2px 5px;
        width: 44px;
        margin-right: 5px;
}
.view-toggle button {
    padding: 8px 18px !important;
}
.shop-actions{
    gap: 10px;
}
.woof_front_toggle.woof_front_toggle_opened{
    color: #000;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
       background-color: #000 !important; 
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #fff;
}
.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: .4em;
}
.woocommerce .widget_price_filter .price_slider_amount {
    font-size: 18px;
}
.woof_childs_list_opener span.woof_is_closed {
    background: url('../images/arrow_back_ios.svg');
}
.woof_childs_list_opener span.woof_is_opened {
     background: url('../images/arrow_back_ios.svg');
         transform: rotate(-180deg);
}
.button.woof_reset_search_form{
    background-color: #000 !important;
    color: #fff !important;
}
.woof_checkbox_label {
    margin-left: 3px !important;
}
.value_box .accordion-header button:focus{
    outline: none;
    box-shadow: none
}
.value_box #faqAccordion .accordion-body {
    padding: 20px 20px;
}
.accordion-item:last-of-type>.accordion-collapse,
.accordion-item:last-of-type{
    border-radius: 0;
}
.term-coal-biomass-wte-powerplants .hero h1 {
    max-width: 800px;
    margin: 0 auto;
}
.custom-error {
  display: block;
  color: #f00;
  font-size: 16px;
  margin-top: 4px;
}

.has-error .wpcf7-form-control {
  border-color: #d63638;
}

form span.wpcf7-not-valid-tip{
    display:none !important;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}
.iti__country-list {
    max-width: 318px;
}
.wpcf7 form.sent .wpcf7-response-output {
    margin: 0 !important;
    border-color: #46b450 !important;
    color: #46b450 !important;
    border: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    bottom: 10px !important;
    left: 160px !important;
    font-size: 18px !important;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}
a.lmp_button {
        width: 100%;
    font-family: "Satoshi-Bold", sans-serif;
    color: #14346A !important;
    border: 1px solid #112C5B;
    font-size: 16px !important;
    padding: 18px 20px 20px !important;
    border-radius: 12px !important;
}
.custom-product-card .product-img{
    border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 5px;
}
.woocommerce.widget_price_filter{
     border-top: 1px solid rgba(0,0,0,0.1);
     padding-top: 10px;
}
.woocommerce div.product form.cart .button{
       text-transform: uppercase;
}
.woocommerce-product-details__short-description ul {
    padding-left: 20px;
}
.products.list-view-active .custom-product-card .product-img{
    border: 0;
}
.contact-text .social-media  {
    justify-content: flex-start;
}
.contact-text .social-media a {
    border: 1px solid #fff;
    background: #fff;
    width: 40px;
    height: 40px;
}

/*****resposnive*****/
@media (min-width: 1850px) {
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1776px;
}
}
@media (max-width: 1439px) {
.h3 { font-size: 43px; }
.whybox-image { max-width: 440px; }
.vision_box {
    padding: 30px 30px;
}

}
@media (max-width: 1365px) {
.hero-heading { font-size: 3.1rem;  line-height: 1.1; }
.h3 { font-size: 40px;	}
.contact-text-btm {   gap: 40px; }

.hero-heading {
    font-size: 3.2rem !important;
}
.postid-547 .details_row_left h1.h3{
    max-width: 366px;
}
.postid-548 .details_row_left h1.h3 {
    max-width: 340px;
}
.postid-550 .details_row_left h1.h3 {
    max-width: 350px;
}
.postid-546 .details_row_left h1.h3{
   max-width: 370px;  
}
.postid-510 .details_row_left h1.h3{
   max-width: 370px;  
}
}
@media (max-width: 1279px) {
.container, .container-lg, .container-md, .container-sm {
        max-width: 1100px;
    }
.product_desc {
    width: 77%;
}
.industry-tabs {
    width: 38%;
}
}
@media (max-width: 1179px) {
.carousel-indicators {  right: 20px !important; }
.footer_mainlinks {
    gap: 30px;
}
.ready-section img{
    height: 400px;
    object-fit: cover;
}
.h4 {
    font-size: 24px;
}
.product_desc {
    width: 75%;
}
.main-menu {
    gap: 15px;
}
.nav-menu {
    gap: 15px;
}
.logo {
    width: 220px;
    padding-right: 20px;
}
}
@media (max-width: 1079px) {
.container {  max-width: 95%;  }
}
@media (max-width: 991.9px) {
.header { background: #FFFFFF;  padding: 2px 0px; }
.nav-menu {display:none; position:fixed; top: 78px; left:0;width: 100%; right:0;float:none;z-index:9999; 
background: #FFFFFF;  transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out; overflow: auto; max-height: calc(100% - 78px); max-height: -webkit-calc(100% - 78px);  max-height: -moz-calc(100% - 78px); padding: 0px; width: 100%; max-width: 100%; border: 0; border-radius: 0;  padding-bottom: 15px; }
nav ul {width: 100%;max-width: 100%;  display: block; justify-content: normal;    margin-top: 0;  padding: 0px;}
nav ul li {display: block;  float: none;  margin: 0; text-align: left; padding: 8px 40px; }
nav ul li:last-child{border:0px;}
nav ul li:not(:last-child) { margin-right: 0; }	
.nav-icon{display:block;  top: 23px; right: 0px; }
.nav_bg { position: absolute; right: 0; top: 0; border: 0; }
body.open { overflow: hidden; }
.open .nav-menu {display:block;  top: 68px; max-height: calc(100% - 68px);  max-height: -webkit-calc(100% - 68px); max-height: -moz-calc(100% - 68px); }
.logo {  width: 190px; }
.tablepress {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
 .megamenu-content {
				position: relative !important;
				left: 0 !important;
				transform: none !important;
				width: 100% !important;
				max-width: none !important;
				box-shadow: none !important;
			}

			.megamenu-left {
				border-right: none;
			}
.comon-padd {
    padding: 35px 0px;
}
.h3 {
        font-size: 36px;        margin-bottom: 5px;
    }
.industry-tabs .industry-tab {
    padding: 15px 15px;
}
a.btn-white {
    padding: 12px 30px 13px;
}
.contact-image img {
        height: 1310px;
}
.ready-container .h3 {
    font-size: 25px;
}
.language-switcher {
    margin-left: 0;
}
.social-media {
    justify-content: flex-start;
}
.footer-main {
    padding: 25px 25px;
}
.contact-text-btm{
    margin-bottom: 20px;
}
.product_image {
    aspect-ratio: 1.6 / 1;
}
.header.stick .navbar-collapse {
    box-shadow: none;
}
.nav-menu > li:last-child a {
    width: 190px;
}
   .connect_box {
    padding: 18px 15px;
    }
    .connect_img {
    width: 30px;
}
.hero {
    padding: 115px 0 45px !important;
}
.blog-decs {
    padding: 0px 10px;
}
.blogs-container .title p{
    margin: 0;
}
.blog-main {
    padding: 0px 20px;
}
.blog-title {
    gap: 18px;
    flex-wrap: wrap;
}
.detail-image{
    margin-bottom: 20px;
}
.price_box{
    flex-wrap: wrap;
}
.product_desc {
        width: 100%;
        border: 0;
        padding: 0;
        margin: 0 0 10px;
    }
.feature_main {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.feature_box {
    width: 32%;
}
.card-col {
    margin-bottom: 20px;
}
    .tab-pane {
        display: none;
    }
    nav ul li ul.product-list li{
        padding: 0;
    }
    .megamenu-right {
         width: 100%;
    padding: 20px 20px;
    }
 .megamenu-left {
    display: none;
  }
  .tab-pane {
    display: block !important;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    position: relative;
  }

  .tab-pane::before {
    content: attr(data-title);
    display: block;
    padding: 10px 0;
    font-weight: 600;
    cursor: pointer;
  }

  .tab-pane::after {
    content: "+";
    float: right;
    margin-top: -35px;
    margin-right: 15px;
  }

  .tab-pane.active::after {
           content: "-";
        position: absolute;
        right: 0;
        top: 42px;
  }

  .product-list {
    display: none;
    padding: 10px 15px;
  }

  .tab-pane.active .product-list {
    display: block;
  }
  .nav-menu {
    gap: 20px;
  }
  .nav-menu > li:last-child a {
    padding: 11px 30px 12px;
    width: 150px;
  }
  .logo {
    width: 215px;
    position: relative;
    padding-right: 35px;
  }
  .nav-menu > li:last-child a {
    font-size: 16px;
  }
  .product-list li a {
    font-size: 14px;
  }
  .industry-tabs {
    width: 37%;
  }
  .main-menu {
    padding-left: 0;
    padding-right: 35px;
}
.top-cart-val {
    padding: 10px !important;
    width: 50px !important;
    height: 50px !important;
    padding-top: 14px !important;
}
    .contact-text-btm {
        gap: 30px;
    }
.contact-text{
    padding-bottom: 30px;
}
}
@media (max-width: 767.9px) {
    .container {
        max-width: 100%;
    }    

.hero-heading {
        font-size: 2.8rem !important;
    }
.company_image {
    margin-top: 0;
}
.home-industry-main {
    flex-wrap: wrap; padding: 15px 15px; 
}
.industry-tabs, .industry-content {
    width: 100%;
}
    .contact-image img {
        height: 1300px;
    }
.footer-text p {
    text-align: left;
    margin: 0;
}
.footer_mainlinks {
    flex-wrap: wrap;
}
.footer_links{
    width: 100%;
}
.footer_links:last-child {
    width: 100%;
}
.footer-btmrow {
    padding: 20px 0px 0;
}
.footer-row {
    padding-bottom: 0;
}
    .ready-container .h3 {
        font-size: 24px;
    }
.contactpage_form {
    padding: 35px 0px 10px;
}
.iti--allow-dropdown input{
    width: 100%;
}
.carousel-indicators {
    justify-content: flex-start !important;
    bottom: 15px !important;
    left: 15px !important;
    right: auto !important;
}
.contact-grid {
    width: 100%;
}
.contact-text-btm {
        gap: 15px;
    }
.contactpage_form {
        padding: 30px 0px 10px;
    }
.form div.halfs {
    display: block;
}
    .contact-image img {
        height: 200px;
    }
.contact_row {
    position: relative;
    padding: 10px 0 0;
}
.contact-text{
    background: #000;
    padding: 20px 20px;
}
.contact_sec  {
    padding-bottom: 0 !important;
}
.prdocut_slider .category-description {
    width: 100%;
}
.prdocut_slider .product_txt a.btn-outline {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 10px;
        padding: 10px 30px 11px;
}
.product_image {
        aspect-ratio: 1.2 / 1;
    }
.product_txt {
    width: 95%;
    padding: 12px 16px;
}
.product_txt h4 {
    margin-top: 5px;
    margin-bottom: 0;
}
.h4 {
        font-size: 22px;
    }
.hero-text {
    line-height: 23px;
}
.btn-solid {
    padding: 13px 28px;
}
.btn-bdr-only {
    padding: 10px 34px;
}
.footer-main {
        padding: 18px 18px;
    }
.faq-section .h3 {
    margin-bottom: 20px;
}
.connect_box {
    margin-bottom: 12px;
}
.faq-hold {
    padding-left: 0;
}
.map_box  {
 padding: 20px 20px;   
}
.map_box h5 {
    color: #3B3B3B;
    font-size: 22px;
    margin-bottom: 12px;
    
}
.map_box a {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
}
.map_box p {
    margin-bottom: 10px;
}
.accordion-header button {
    font-size: 18px;
    padding: 18px 0;
}
.presence_box {
    gap: 20px;
    flex-wrap: wrap;
}
.presence_img, .presence_text {
    width: 100%;
}
.values_sec .title h4 {
    font-size: 24px;
}
.value_box{
    flex-wrap: wrap;
}
.value_acordian{
    width: 100%;
}
.value_image{
    width: 100%; margin: 0;  
}
.vision_sec {
    padding-bottom: 0 !important;
}
.blog-main {
        padding: 0;
    }
    .blog-slidermain {
    padding: 20px 0px;
}
.feature_box {
        width: 48%;
    }
    .home-product-main {
    padding: 15px 15px;
    }
    .home-industry{ padding-bottom: 0 !important}
.modal-product-form {
    max-width: 90% !important;
}

.hero h1 {
    font-size: clamp(2rem, calc(1.1rem + 2.5vw), 3rem) !important;
}
.btn-bdr-only {
    padding: 10px 30px !important;
}
.btn-solid {
    padding: 11px 30px !important;
}
.nav-icon {
    top: 29px;
}
.home .contactpage_form {
        padding: 30px 20px 10px;
    }
.home .contact_sec {
        padding-bottom: 20px !important;
    }
}
@media (max-width: 575.9px) {
.ready-container .h3 strong {
    font-size: 34px;
}
    .ready-container .h3 {
        font-size: 22px;
    }
.buttons-container { flex-wrap: wrap;  }
    .hero-heading {
        font-size: 1.9rem !important;
    }
    .hero-divider {
    margin: 20px 0 0px;
}
    .h3 {
        font-size: 32px;
    }
    .industry-content img {
    height: 200px;
    }
    .footer_btmain p {
    margin-bottom: 10px;
}
nav ul li {
        padding: 8px 20px;
    }
     
}
@media (max-width: 479.9px) {
        .h3 {
        font-size: 30px;
    }
    .product_image {
        aspect-ratio: 1 / 1;
    }
        .ready-container .h3 strong {
        font-size: 28px;
    }
        .ready-container .h3 {
        font-size: 20px;
    }
    .product_txt {
        width: 92%;
    }
        .h4 {
        font-size: 19px;
    }
    .h3 {
        font-size: 28px;
    }
     .price_box .h3 {
        font-size: 24px;
    }
    .contactpage_form h3 {
    font-size: 28px;
    }
     .feature_box {
        width: 100%;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .feature_box:last-child {
         border-bottom: 0;
    }
    .feature_main {
    background-size: 100% 100%;
    }
}