/* ==============================================
              Global CSS
==================================================*/

@font-face {
  font-family: Roboto-Regular;
  src: url("../build/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: Roboto-Bold;
  src: url("../build/fonts/Roboto-Bold.ttf");
}
@font-face {
  font-family: Roboto-Medium;
  src: url("../build/fonts/Roboto-Medium.ttf");
}
@font-face {
  font-family: Roboto-Light;
  src: url("../build/fonts/Roboto-Light.ttf");
}
@font-face {
  font-family: Roboto-SemiBold;
  src: url("../build/fonts/Roboto-SemiBold.ttf");
}
a{
  text-decoration: unset;
}
p{
  font: 16px 'Roboto-Regular';
  color: #414142;
  line-height: 30px;
}
span{
  color: #D2242A;
}
.red{
  color: #D2242A !important;
}
.grey{
  color:#81848A !important;
}
h1 {
  font: clamp(24px, 4vw, 68px) 'Roboto-Bold';
  color: #ffffff;
}
h2 {
  font: clamp(38px, 4vw, 50px) 'Roboto-Bold';
  color: #0B0F13;
}
h3 {
  font: clamp(22px, 4vw, 34px) 'Roboto-Bold';
  color: #252525;
}
h4{
  font: clamp(19px, 4vw, 24px) 'Roboto-SemiBold';
  color: #000000;
}
h5{
  font: 22px 'Roboto-Bold';
  color: #0B0F13;
}
h6{
  font: 20px 'Roboto-Bold';
  color: #D2242A;
}
.banner-btn {
  background: #D2242A;
  color: #ffffff;
  font: 20px 'Roboto-Light';
  border-radius: 5px;
  border: unset;
  width: 180px;
  height: 47px;
}
.about-btn {
  background: #002B40;
  color: #ffffff;
  font: 18px 'Roboto-Medium';
  border-radius: 5px;
  border: unset;
  width: 170px;
  height: 55px;
  transition: 0.5s;
}
.about-btn:hover {
  background: #cf2329;
  transition: 0.5s;
}
.product-btn {
  background: #002B40;
  color: #ffffff;
  border: unset;
  height: 55px;
  font: 18px 'Roboto-Medium';
  width: 390px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.product-btn:after {
  content: "\226B";
  position: absolute;
  opacity: 0;  
  top: 16px;
  right: 35%;
  transition: 0.5s;
}
.product-btn:hover {
  padding-right: 30px;
  padding-left: 8px;
  background: #cf2329;
}
.product-btn:hover:after {
  opacity: 1;
  right: 32%;
}
.industry-btn {
  background: #ffffff;
  color: #252525;
  border: unset;
  height: 55px;
  font: 18px 'Roboto-Medium';
  width: 425px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.view-more {
  font: 20px 'Roboto-Regular';
  color: #ffffff;
  text-align: center;
}
.view-more:hover{
  color: #D2242A;
}
.read-more {
  font: 20px 'Roboto-Regular';
  color: #414142;
  text-align: center;
}
.banner-title{
  font: clamp(30px, 4vw, 68px) 'Roboto-Light';
  color: #ffffff;
}
.submit-btn {
  background: #D2242A;
  color: #ffffff;
  font: 20px 'Roboto-Bold';
  border-radius: 5px;
  border: unset;
  width: 186px;
  height: 59px;
}
.know-btn{
  background: #ffffff;
  color: #252525;
  font: 16px 'Roboto-Bold';
  border-radius: 5px;
  border: unset;
  width: 125px;
  height: 40px;
}
.read-btn {
  background: #942B33;
  color: #ffffff;
  font: 16px 'Roboto-Regular';
  border-radius: 5px;
  border: unset;
  width: 140px;
  height: 40px;
}
/* ==============================================
              Nav bar Section
==================================================*/
.header {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 99;
  padding: 25px;
  background: #ffffff;
  top:0;
}
.header .item-left{
	flex:0 0 12%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center{
	flex:0 0 77%;
}
.header .item-right{
	flex:0 0 11%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 30px;
}
.header .menu > ul > li > a {
    font: 16px 'Roboto-Regular';
    color: #252525;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
   margin-right: 70px;
     transition: all .8s ease-in-out;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li:hover {
    transition: all .8s ease-in-out;
    padding: 0 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 10px 0;
    display: inline-block;
    font: 15px 'Roboto-Regular';
    color: #252525;
    transition: color 0.3s ease;
   
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1200px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
    height: auto;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .product-list {
    flex: 0 0 27%;
    padding: 0 15px;
    border-right: 1px solid #d2242a;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .subcategory-list {
    flex: 0 0 23%;
    padding: 0 15px;
    border-right: 1px solid #d2242a;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .product-image-pxreview {
    flex: 0 0 50%;
    padding: 0 40px;
}
.product-list{
 position: relative;
}

.product-list a img {
    display: none;
    height: 14px !important;
    width: 14px !important;
    background: unset !important;
    padding: 0 !important;
    transform: translateY(-15%) translateX(50%);
    transition: all 5.5s linear;
    margin-top: 0 !important;
}
.product-list a:hover img {
  display: inline-block;
   transform: translateY(-15%) translateX(80%);
   transition: all 5.5s linear;
}
.a-list a img {
    display: none;
    height: 14px !important;
    width: 14px !important;
    background: unset !important;
    padding: 0 !important;
    transform: translateY(-15%) translateX(50%);
    transition: all 5.5s linear;
    margin-top: 0 !important;
}
.a-list a:hover img {
  display: inline-block;
   transform: translateY(-15%) translateX(80%);
   transition: all 5.5s linear;
}
.title a img {
    display: none;
    height: 14px !important;
    width: 14px !important;
    background: unset !important;
    padding: 0 !important;
    transform: translateY(-15%) translateX(50%);
    transition: all 5.5s linear;
    margin-top: 0 !important;
}
.title a:hover img {
  display: inline-block;
   transform: translateY(-15%) translateX(80%);
   transition: all 5.5s linear;
}

.sub-list a img {
    display: none;
    height: 14px !important;
    width: 14px !important;
    background: unset !important;
    padding: 0 !important;
    transform: translateY(-15%) translateX(50%);
    transition: all 5.5s linear;
    margin-top: 0 !important;
}
.sub-list a:hover img {
  display: inline-block;
   transform: translateY(-15%) translateX(80%);
   transition: all 5.5s linear;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font: 16px 'Roboto-Medium';
    color: #d2242a;
    line-height: 1;
    padding: 10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  background: #f5f5f5;
  padding: 14px;
  object-fit: scale-down;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}
.header .menu > ul > li > a.active {
  color: #ea4636; /* Active color */
  font-weight: bold;
}
.menu-link.active {
  color: #ff6600;
  font-weight: bold;
}
/*responsive*/
@media(max-width: 1024px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}

	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}

.product-menu:hover .sub-menu {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}
.sub-menu.default-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.sub-menu .list-item {
  padding: 10px;
}
.subcategory-list {
  display: none;
}
.subcategory-list ul li a:hover {
  font-weight: bold;
  color: #007bff;
}


/* ==============================================
              Footer Section
==================================================*/
.footer-sec {
  background: url(../build/img/home/footer-bg.png) no-repeat center/cover;
  padding: 50px 0 30px;
  position: relative;
}
.footer-logo {
  width: 240px;
  margin-right: auto;
  margin-left: auto;
}
.footer-menu {
  margin: 20px 0 0;
  list-style: none;
  padding: 0;
}
.footer-menu li {
margin-bottom: 8px;
}
.footer-menu li a {
  color: #ffffff;
  font-family: 'Roboto-Regular';
  font-size: 16px;
  line-height: 30px;
}
.footer-menu p, .footer-contact p, .footer-social p {
  color: #ffffff;
  font: 17px 'Roboto-Bold';
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.footer-contact li {
  color: #ffffff;
  font: 16px 'Roboto-Regular';
  line-height: 24px;
  margin-bottom: 20px;
}
.footer-contact li a {
  color: #ffffff;
  font: 16px 'Roboto-Regular';
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer-logos {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-content {
  padding: 12px 0px 0 0;
}
.footer-logo-2 {
  width: auto;
  position: absolute;
  right: 6%;
  top: 14%;
}
.footer-logo-3 {
    width: auto;
    position: absolute;
    right: 6%;
    top: 35%;
    width: 100px;
}
.footer-social {
  padding: 0;
  position: relative;
  display: flex;
  gap: 20px;
}
.footer-social a .fb {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/fb.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-social a .fb:hover {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/fb-active.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-social a .insta {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/insta.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-social a .insta:hover {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/insta-active.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-social a .link {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/in.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-social a .link:hover {
  width: 45px;
  height: 45px;
  background: url("../build/img/icons/in-active.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-contact i {
  color: #2e9064;
}
.copyrights {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 20px 0px;
  color: #ffffff;
  font-family: 'Roboto-Regular';
  font-size: 14px;
  list-style: none;
  flex-wrap: wrap;
}
.contct_icon {
  padding-right: 15px;
}
/* ==============================================
        scroll-up, side enquiry, call button
==================================================*/
.to-top {
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  display: none;
}
.to-top a.back-to-top {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 2em;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: #d2242a;
  transition: 0.3s;
}
.scroll-to-tops {
    display: inline-block;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 80px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
    transition: all 0.4s ease;
    right: 25px;
}
.scroll-to-call {
    display: inline-block;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 140px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
    transition: all 0.4s ease;
    right: 25px;
}
.scroll-to-call:hover, .scroll-to-tops:hover{
  transform: scale(1.1);
}
.back-to-top::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00984A;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}
.back-to-top:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00984A;
}
.call_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 19px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  z-index: 100;
}
.call_float::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00984A;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}
.call_float:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00984A;
}

/* ==============================================
              Home Page CSS
==================================================*/

/* Banner Section  */

.home-banner {
  position: relative;
}
.home-banner video {
  width: 100%;
  display: block;
}
/* .home-banner:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
} */
.home-content {
  margin: 0 auto;
  position: absolute;
  inset: 0;
  place-items: center;
  color: #fff;
  align-content: center;
  text-align: center;
  display: grid;
}
.banner-des {
  font: clamp(16px, 4vw, 20px) 'Roboto-Regular' !important;
  color: rgb(255 255 255 / 70%);
  line-height: clamp(24px, 4vw, 35px) !important;
}
.scroll-img {
  position: absolute;
  bottom: 14%;
  left: 48%;
}

/* About Section */
.about-sec{
  background: #f2f2f2;
  padding: 120px 0 190px;
  position: relative;
}
.about-img {
  transition: all .5s linear;
}
.about-img:hover {
  transform: scale(1.1);
  transition: all .5s linear;
}
.about-img1 {
  position: absolute;
  right: 13.5%;
  bottom: 12%;
  width: auto;
}

/* Products Section */

.product-sec{
  background: #ffffff;
  padding: 70px 0;
}
.product-grid{
  display: grid;
  row-gap: 20px;
  column-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  padding: 60px 25px 50px;
  text-align: center;
}
.product-grid .grid-items {
  background: url(../build/img/home/product-bg.png) no-repeat center/cover;
  height: 474px;
  box-shadow: 0px 25px 25px 0px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}


/* .grid-bg:hover{
  background: url(../build/img/home/product-hover.png) no-repeat center/cover;
  height: 474px;
  position: absolute;
} */
/* Highlights Section */

.high-sec{
  background: url(../build/img/home/high-bg.png) no-repeat center/cover;
  height: 450px;
  padding: 50px 0;
}
.blue-ellipse {
  position: absolute;
  background: url(../build/img/home/blue-circle.png) no-repeat center/cover;
  width: 468px;
  height: 468px;
  top: 13rem;
  left: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  text-align: center;
}
.grey-ellipse {
  position: absolute;
  background: url(../build/img/home/grey-circle.png) no-repeat center/cover;
  width: 288px;
  height: 288px;
  top: 13rem;
  left: 40.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  text-align: center;
}
.white-ellipse {
  position: absolute;
  background: url(../build/img/home/white-circle.png) no-repeat center/cover;
  width: 288px;
  height: 288px;
  top: 33rem;
  left: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.red-ellipse {
  position: absolute;
  background: url(../build/img/home/red-circle.png) no-repeat center/cover;
  width: 288px;
  height: 288px;
  top: 27.5rem;
  right: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  text-align: center;
}
.count-no {
  font: clamp(32px, 4vw, 66px)'Roboto-Bold';
}
.count-no span{
  color: #ffffff;
}

/* Industries Section */

.industry-sec{
  background: url(../build/img/home/industry-bg.png) no-repeat center/cover;
  padding: 50px 0;
}
.subtitle{
  background: #FFFFFF;
background: linear-gradient(to bottom right, #FFFFFF 20%, #999999 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: 'Roboto-Regular';
}
.industry-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 60px 0px 50px;
}
.industry-grid .grid-items {
  background: url(../build/img/home/auto.png) no-repeat center/cover;
  height: 350px;
  background-color: rgb(255 255 255 / 80%) !important;
  background-blend-mode: overlay !important;
  box-shadow: rgb(0 0 0 / 15%) 0px 15px 52px 0px inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-grid .grid-items:hover {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-color: rgb(210 36 42 / 45%) !important;
  justify-content: flex-end;
}
.red-border {
  border-left: 5px solid #D2242A;
  padding: 12px 20px;
  margin: 0;
}
.industry-grid .grid-items .front-text {
  padding: 0 40px;
}
.industry-grid .grid-items:hover .front-text{
  display: none;
}
.industry-grid .grid-items .back-text{
 display: none;
}
.industry-grid .grid-items:hover .back-text {
  display: block;
  webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


/* Why Choose Us Section */

.choose-sec{
  padding: 70px 0;
}
.choose-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 50px 0px 30px;
}
.choose-grid .grid-items {
  background: #E8E8E8;
  border-radius: 25px;
  padding: 35px 32px 5px;
}
.choose-grid .grid-items:hover {
  background: rgb(210,36,42);
  background: linear-gradient(180deg, rgba(210,36,42,1) 100%, rgba(164,30,35,1) 100%);
  box-shadow: rgb(0 0 0 / 25%) 0px 15px 25px 0px;
  border-radius: 25px;
  padding: 35px 32px 5px;
}
.choose-grid .grid-items .choose-icon-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.choose-grid .grid-items:hover .choose-icon-main {
  display: none;
}
.choose-grid .grid-items:hover .choose-icon-hover{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
} 
.choose-grid .grid-items .choose-icon-hover{
  display: none;
} 
.choose-grid .grid-items:hover h5{
  color: #ffffff;
}
.choose-grid .grid-items:hover p{
  color: #ffffffb9;
}

/* Our Clients Section */
.client-sec{
  background: url(../build/img/home/clients-bg.png) no-repeat center/cover;
  padding: 85px 0;
}
.client-sec ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 6px;
  margin-top: 70px;
}

/* News&Events Section */
.news-sec{
  background: #ebebeb;
  padding: 100px 0 80px;
}
.news-title{
  color: #000000;
  font: 16px 'Roboto-Medium';
  line-height: 25px;
}
.news-title:hover{
  color: #D2242A;
}
.news-date{
  color: #8C8C8C;
  font: 16px 'Roboto-Medium';
}

/* Manufacturing Trends Section */
.trend-sec{
  padding: 50px 0 70px;
}
.trend-grid {
  display: grid;
  row-gap: 45px;
  column-gap: 24px;
  grid-template-columns: 46% 53%;
  padding: 70px 0px 30px;
}
.trend-grid .grid-items:hover .read-more{
  color: #D2242A;
}
.tred-title{
  font-family: 'Roboto-Regular';
  color: #414142;
}
.trend-grid .grid-items:hover  .tred-title{
  font-family: 'Roboto-SemiBOld';
  color: #D2242A;
}

/* ==============================================
              About Us Page CSS
==================================================*/
/* Banner Section */
.common-banner {
  background: url(../build/img/about/about-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
/* Story Section */
.sub-title {
  font: clamp(14px, 4vw, 16px) 'Roboto-Bold';
  color: #000000;
  letter-spacing: 3px;
}
.story-sec{
  background: url(../build/img/about/story-bg.png) no-repeat center/cover;
  padding: 80px 0;
}
.about-head{
  font-family: 'Roboto-Light' !important;
  font-size: 35px !important;
}
.about-head-1{
  font-family: 'Roboto-Bold' !important;
  font-size: 35px !important;
  color: #D2242A;
}

/* vision mission */
.vision-sec{
  background:  url(../build/img/about/vision-background.png) no-repeat center/cover;
  padding: 80px 0;
}
.vision-sec .swiper-slide {
  display: grid;
  column-gap: 3%;
  grid-template-columns: 20% 77%;
  padding: 65px 50px;
  justify-items: center;
  border-radius: 40px;
  align-items: center;
}
.vision-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  padding: 50px 16px 30px;
}
.vision-grid .grid-items {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 25px;
}
.vision-grid .grid-items img {
  width: 25%;
  padding: 0 15px;
}
/* founder section */
.founder-sec{
  background:  url(../build/img/about/founder-bg.png) no-repeat center/cover;
  padding: 70px 0px;
}

/* Awards section */
.awards-sec{
  padding: 70px 0px;
}
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
.section-title h4 {
  letter-spacing: 2px;
  font-weight: 600;
  color: #b80000;
}
.section-title h2 {
  font-size: 28px;
}
.section-title .highlight {
  color: #d00000;
  font-weight: bold;
}
.awards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.award-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 30px;
  overflow: hidden;
  
}
.award-image img {
  width: 100%;
  height: auto;
  display: block;
}
.award-tabs {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.tab {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  
}
.tab.active {
  background: linear-gradient(to right, #C92329, #9C1B20);
  color: #fff;
}
.tab .number {
  font-size: 50px;
  font-weight: 700;
  color: #d00000;
}
.tab.active .number {
  color: #fff;
}
.tab-content h4 {
  margin: 0 0 10px;
}
.tab-content p {
  margin: 0;
  font-size: 16px;
  color: #666;
}
.tab.active .tab-content p,
.tab.active .tab-content h4 {
  color: #fff;
}
/*Values section */

.values-sec{
  background:  url(../build/img/about/values-bg.png) no-repeat center/cover;
  padding: 70px 0px;
}
.values-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  padding: 50px 16px 30px;
}
.values-grid .grid-items {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px 32px 5px;
}
.values-grid .grid-items:hover {
  background: #002B40;
  /* background: linear-gradient(180deg, rgba(210,36,42,1) 100%, rgba(164,30,35,1) 100%); */
  box-shadow: rgb(0 0 0 / 25%) 0px 15px 25px 0px;
  border-radius: 25px;
  padding: 35px 32px 5px;
}
.values-grid .grid-items .values-icon-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.values-grid .grid-items:hover .values-icon-main {
  display: none;
}
.values-grid .grid-items:hover .values-icon-hover{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
} 
.values-grid .grid-items .values-icon-hover{
  display: none;
} 
.values-grid .grid-items:hover h5{
  color: #ffffff;
}
.values-grid .grid-items:hover p{
  color: #ffffffb9;
}

/* ==============================================
              Contact Us Page CSS
==================================================*/
/* Banner Section */
.contact-banner {
  background: url(../build/img/about/contact-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-form-bg {
  border-radius: 40px;
  padding: 45px 40px;
  box-shadow: rgb(0 0 0 / 15%) 0px 3px 8px;
}
/* ==============================================
              Industry Page CSS
==================================================*/
/* Banner Section */
.industry-banner {
  background: url(../build/img/industry/industry-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
/* Industries Section */
.industry {
  padding: 50px 20px;
  background-color: #f8f8f8;
}

.industry-container {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.industry-card {
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: white;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
}

.industry-btn1 {
  text-align: left;
  padding: 15px;
  background-color: #002d4d;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}
.industry-card a:hover {
  color: #d2242a !important;
}
.industry-card:hover .industry-btn {
  background: linear-gradient(to right, #D2242A, #A41E23);
}
.industry{
  background: url(../build/img/industry/industry-bg.png) no-repeat center/cover;
}

/* Enquiry Section */
.enquiry-form{
  padding: 70px 0px;
}
.enquiry-form .form-control {
  display: block;
  width: 100%;
  padding: 15px 11px;
  font-family: Roboto-Regular;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #81848A;
  border:1px solid #EBEBEB;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 15px 0px;
}
.boxed-btn {
  font-family: Roboto-Regular;
  font-size: 17px;
  font-weight: 600;
  width: auto;
  border: 3px solid #D2242A;
  border-radius: 10px;
  color: #252525;
  padding: 15px 30px;
  background: none;
}
form#enq_form {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px 40px;
  border-radius: 40px;
}
.iti {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* ==============================================
              Industry single Page CSS
==================================================*/
/* Banner Section */
.industry-single-banner {
  background: url(../build/img/industry/industry-single-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
/* Industry Details section */
.indus-name{
  font-family: Roboto-Regular;
  font-size: 35px;
  color: #D2242A;
}
.industry-link{
  font-family: Roboto-Regular;
  font-size: 20px;
}
.industry-detail{
  background: url(../build/img/industry/industry-detail-bg.png) no-repeat center/cover;
  padding: 45px 0px 70px 0px;
  margin-bottom: 20px;
}
.industry-detail img{
  margin-bottom: 20px;
}
.industry-details {
  display: flex;
  flex-wrap: wrap;
  max-width: auto;
  margin: auto;
}
.industry-details .column {
  width: 50%;
  box-sizing: border-box;
  padding: 10px 0px;
}
.industry-details .bullet-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.industry-details .bullet {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}
.industry-details .text {
  font-family: Roboto-Medium;
  color: #414142;
  font-size: 16px;
}
.industry-detail p{
  font-family: Roboto-Medium;
  color: #414142;
  font-size: 16px;
}

/* ==============================================
              Industry single Page CSS
==================================================*/
/* Banner Section */
.category-banner {
  background: url(../build/img/category/categories-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
/* Machine Image section */
.category .machine-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #E8E8E8;
  text-align: center;
  transition: background 0.3s ease;
  padding: 40px;
  height: 500px;
}

.category .machine-card .machine-title {
  font: clamp(24px, 4vw, 35px) 'Roboto-SemiBold';
  color: #000;
  transition: color 0.3s ease;
  z-index: 2;
  position: relative;
}

.category .machine-card img {
  max-width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  transform: scale(1);
  transition: all .5s linear;
}


.category .machine-card:hover {
  background-color: #032d44;
}

.category .machine-card:hover .machine-title {
  color: #fff;
}

.category .machine-card:hover .view-btn {
  display: inline-block;
}

.category .view-btn a {
  background: linear-gradient(to bottom, #D2242A, #A41E23);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-family: Roboto-SemiBold;
  font-size: 25px;
  width: 200px;
  height: 50px;
  transition: all .5s linear; 
}

.machine-card {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.category .machine-card:hover img {
  transform: scale(.8);
  transition: all .5s linear;
}
.machine-card .view-btn{
  opacity: 0;
}
.machine-card:hover .view-btn{
  opacity: 1;
  transition: all .5s linear; 
}

/* ==============================================
              Contact Us Page CSS
==================================================*/
/* Banner Section */
.contact-banner {
  background: url(../build/img/about/contact-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-sec{
  background: url(../build/img/about/story-bg.png) no-repeat center / cover;
  padding: 80px 0;
}
.hover-effect:hover {
  background-color: red;
  color: white;
}
form :is(input, textarea, select).errorform {
  border: 1px solid red !important;
}
.iframe-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.contact-grid {
  display: grid;
  gap: 30px 0px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: 40px 0 10px;
}
.contact-grid .grid-items {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}
/* ==============================================
              service & support Page CSS
==================================================*/

.service-banner {
  background: url(../build/img/service&support/service-container.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.feature-icon {
  font-size: 40px;
  color: #dc3545;
}

.info-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.info-box h5 {
  color: #102C5B;
}

/* ==============================================
              Product Page CSS
==================================================*/

.product-banner {
  background: url(../build/img/service&support/product-banner.png) no-repeat center/cover;
  height: 450px;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.product-card {
  background: url(../build/img/home/product-bg.png) no-repeat center/cover;
  height: 274px;
  box-shadow: 0px 25px 25px 0px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.product-box {
  border: none;
  transition: transform 0.3s ease;
}

.product-box:hover {
  transform: translateY(-5px);
}

.product-card {
  background: url('../build/img/home/product-bg.png') no-repeat center/cover;
  height: 320px;
}

.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-control {
  display: block;
  width: 100%;
  padding: 15px 11px;
  font-family: Roboto-Regular;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #81848A;
  border: 1px solid #EBEBEB;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 15px 0px;
}

.boxed-btn {
  font: 16px 'Roboto-Medium';
  border: 2px solid #D2242A;
  border-radius: 10px;
  color: #252525;
  width: 170px;
  height: 50px;
  padding: 0;
  background: none;
  transition: 0.5s;
}
.boxed-btn:hover{
  background-color:#D2242A;
  color: #ffffff;
  transition: 0.5s;
}
form#enq_form {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  border-radius: 40px;
}
li::marker {
  color: #D2242A;
}
.product-des li {
    font: 16px 'Roboto-Regular';
    margin-bottom: 12px;
    color: #414141;
}
.products1-specification ul{
    padding-left: 2.5rem;
}
.products1-specification li{
      font: 16px 'Roboto-Regular';
    margin-bottom: 12px;
    color: #414141;
}
.get-btn {
    background: #D2242A;
    color: #ffffff !important;
    font: 18px 'Roboto-Semibold';
    border-radius: 5px;
    border: unset;
    padding: 15px 25px;
}

/*==============================================
              Career Page CSS
================================================*/
.work-sec{
  padding: 80px 0;
}
/* Work Details Section */
.work-details-sec{
  background: url(../build/img/career/work-details-bg.png) no-repeat center/cover;
  padding: 80px 0;
}
.work-details-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: 65px 0 10px;
}
.work-details-grid .grid-items {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding: 40px 20px 20px;
    position: relative;
}
.work-details-title{
  font: 18px 'Roboto-Regular';
  color:#D2242A;
}
.work-details-grid .grid-items img {
  position: absolute;
  top: -22%;
  left: 30%;
  right: auto;
}
/* Work List Section */
.work-list-sec{
  padding: 80px 0;
}
.work-list-sec .accordion-item{
  margin-bottom: 30px;
}
.work-list-sec .accordion-button:after {
  content: "Apply Now" !important;
  width: 186px !important;
  height: 59px !important;
  color: #252525;
  text-align: center !important;
  font: 20px 'Roboto-Bold';
  float: right !important;
  padding: 1rem;
  border: 1px solid #D2242A;
  border-radius: 5px;
  background-image: unset !important;
  transform: none;
  vertical-align: middle;
}
.work-list-sec .accordion-button:not(.collapsed):after {
  color: #ffffff;
  background: #D2242A;
  transform: none !important;
}
.work-list-sec .accordion-button {
  background-color: #f5f5f5;
  padding: 45px 40px;
  border-radius: 20px !important;
}
.work-list-sec .accordion-body {
  background: #f5f5f5;
  border-radius: 20px;
  margin-top: 22px;
  padding: 45px 40px;
}
.work-des {
  font: 18px 'Roboto-Medium';
  color: #6f6f6f;
  margin: 15px 0 0;
}
.accordion-button:focus {
  box-shadow : unset !important
}
.work-list-sec .accordion-body li {
  font: 16px 'Roboto-Regular';
  margin: 12px 0;
}
.career-form {
  padding: 3rem 2rem 0;
}
.career-form .form-control {
  display: block;
  width: 100%;
  padding: 12px;
  font: 16px 'Robot-Regular';
  line-height: 1.5;
  color: #252525;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  margin: 8px 0 12px;
}
#uploadfile {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  cursor: pointer;
  padding-bottom: 7px;
}
#fileInput {
  display: none;
}
.career-form  label {
  display: inline-block;
  font: 16px 'Roboto-Regular';
}

/*==============================================
              Blog Page CSS
================================================*/
.blog-sec{
  padding: 100px 0;
}
.blog-grid {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-grid .grid-items {
  background: #ebebeb;
  border-radius: 5px;
  padding: 25px;
}
.blog-grid .grid-items:hover{
  background: #002B40;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 15px 15px;
}
.blog-title {
  font: 18px 'Roboto-Bold';
  color: #252525;
  margin: 22px 0;
}
.blog-grid .grid-items:hover .blog-title {
color: #ffffff;
}
.blog-grid .grid-items:hover p {
  color: #c6c6c6;
  }
.blog-grid .grid-items:hover .know-btn{
  background: #D2242A;
  color: #ffffff;
}
.blogs-items-small {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 30px;
}
.active>.page-link, .page-link.active {
    background-color: #d2242a;
    border-color: #d2242a;
}
.recent-grid {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 30% 60%;
  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
}
.next-grid {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  margin-top: 50px;
}

/*==============================================
              News And Events Page CSS
================================================*/
.event-sec{
  padding: 100px 0;
}
.event-grid{
  display: grid;
  gap: 60px 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.event-grid .grid-items img{
  border-radius: 10px 10px 0 0;
}
.event-grid .grid-items {
  text-align: center;
}
.event-grid .event-content {
  background: #EDEBEB;
  border-radius: 0 0 10px 10px;
  padding: 30px 10px;
}
.event-title{
  font: 18px 'Roboto-Bold';
  color: #252525;
}
.event-date{
  font: 14px 'Roboto-Regular';
  color: #A03736;
}
.event-details-sec{
  padding: 80px 0;
}
/* Privacy Policy Page */
.common-banner2 {
    background: #cf2329;
    padding: 3rem 0;
    margin-top: 6rem;
    display: flex;
    align-items: center;
    text-align: center;
}
.policy {
    list-style: inside;
    text-indent: -22px;
    margin-left: 25px;
}

/*Ad Popup Modal*/
#simpleModal {
  backdrop-filter: blur(1px);
  background-color: #01223770;
}
#simpleModal .modal-content_h {
  top: 200px;
  background-color: transparent;
  border: unset;
 
}
#simpleModal .home_close {
  color: #F4F4F4;
  width: 52px;
  height: 0px;
  padding: 1.68px 1.68px 1.68px 1.69px !important;
  gap: 0px;
  opacity: 0px;
  font-size: 35px;
}
#simpleModal .close {
  margin-left: auto;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  background: transparent;
  border: unset;
  z-index: 99;
}
@media (max-width: 1024px){
  #simpleModal .modal-content {
    width: 100%;
}  
}

@media (min-width: 576px) {
    #simpleModal .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto;
    }
}