 /* Font */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




body{
font-family: 'Poppins';
}

html,body{
	overflow-x:hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
a {
  color: #2f0802;
}
h1,
h2,
h3,
h4 {
  color: #000;
}
*:focus {
  outline: none;
}
button:focus {
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}

.container {
  width:1200px;
  margin: auto;
}


/* Navigation Css Start */

header{
	padding:15px 0px;
  /*position:absolute;*//*
  top:20px;
  left:0;
  right:0;
  z-index:99*/
}

.header_inner{
  background:#fff;
  padding:10px;
  border-radius:10px;
  position: relative;
}

.navbar .nav-list{
	display:flex;
}

.navbar .nav-list li{
	margin-right:32px;
	margin-top: 4px;
}

.navbar .nav-list li a{
	color:#24292d;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight:500;
	text-transform: capitalize;
	letter-spacing: 1px;
	transition:all 0.5s;
}

.navbar .nav-list li a.active{
	color:#006ab3;
}

.navbar .nav-list li a:hover{
	color:#006ab3;
}

.destop_header_inr{
	display:flex;
	justify-content:space-between;
	align-items: center;
}

.logo_center img{
	max-width:200px;
}

.social_right ul{
	display:flex;
	justify-content:space-between;
}

.social_right ul li{
	margin-left:18px;
	display: flex;
}

.social_right ul li a{
	display:inherit;
}

.logo_center a{
	display:inherit;
}

.navbar .nav-list li.dropdwon {
	position: relative;
}

.submenu{
	display:none;
 	position: absolute;
	width: auto;
	top: 100%;
	left: -1px;
	z-index: 1;
	text-align: left;
    background: #fff;
    padding: 10px;
}

ul.nav-list li.dropdwon:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.navbar .nav-list li.dropdown:hover .menu_dropdown{
	opacity:1;
}

.navbar{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
}

/* Megamenu */

ul li.dropdown{
	position: relative;
}

.megamenu{
	position: absolute;
  background: #fff;
  z-index: 99;
  width: 300px;
  opacity:0;
  visibility:hidden;
  transition:all 0.7s;
  top:30px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
      z-index: 99999;
}

ul li.dropdown:hover .megamenu{
	opacity:1;
	visibility:visible;
}

.megamenu li {
	padding:8px 10px;
	border-bottom:1px solid #ccc;
	margin-right:0 !important;
	margin-top:0 !important;

}

.megamenu li a{
  font-size:16px !important;
}

/* Mobile navigation */

.mobile_btm{
    padding:30px 20px 0;
}

.web_header_mobile {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mo_menu {
  position: fixed;
  right:-80%;
  background: #fff;
  width:80%;
  height: 100vh;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index:9999;  
  visibility: visible;
}

.mo_menu.active {
  right:0;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  padding:60px 0px;
  background:#24292d;
  position: fixed;
  overflow-y: scroll;
  opacity:1;
  display:block;
  z-index:99999;
}

.main.active{
  transform: translate(-30%, 0);
  opacity: 0.5;
}

.main{
  transform: translate(0%, 0);
      transition: all 0.6s ease 0s;
}

.mo_menu .sidemenu_close{
  display:none;
}

.mo_menu.active .sidemenu_close{
  display:block;
}

.mo_menu.active .sidemenu_close span{
  background-color:transparent;
}

.mo_menu.active .sidemenu_close span:before, .mo_menu.active .sidemenu_close span:after{
  background-color:#fff;
}

.mo_menu.active .sidemenu_close span:before{
    transform: rotate(45deg);
    top: 10px;
}

.mo_menu.active .sidemenu_close span:after{
    transform: rotate(-45deg);
    top:10px;
}

.sideMenu ul li .navbar-dropdown {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#fff;
  box-shadow:none;
  top:8px;
}

.sideMenu ul li a {
    text-transform: uppercase;
}

.sideMenu .navbar-dropdown li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
  font-size: 16px;
  color: #000000;
   	font-weight: 500;
}

.sideMenu .navbar-dropdown .dropdown_icon{
  width:38px;
  height:38px;
}

.sideMenu  .dropwon_nav h6, .sideMenu  .dropwon_nav p{
  color:#fff;
}

.sideMenu  .dropwon_nav h6{
  font-size:18px;
  margin-bottom:5px;
}

.sideMenu  .dropwon_nav p{
  font-size:14px;
}

.sideMenu .mob_dropdown:after{
    content: '\f054';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right:20px;
    top:24px;
    color:#fff;
    cursor: pointer;
}

.mob_dropdown.active:after{
  transform: rotate(90deg);
}

.sideMenu ul li {
  display: block;
  border-top: 1px solid #ddd;
  position: relative;
  padding: 20px 20px;
}

.sideMenu ul li .navbar-dropdown li{
    padding:20px 20px;
}

.sideMenu ul li:first-child {
    border: 0;
}

.sideMenu ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size:18px;
  font-weight:400;
  letter-spacing:1px;
}

.sideMenu ul li a span{
    cursor:pointer;
}

.menuIcon {
    display: inline-block;
    padding: 3px 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
}
.menuIcon span {
    display: block;
    width: 28px;
    height:3px;
    margin: 20px 0;
    background:#006ab3;
    position: relative;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.menuIcon span:before {
    position: absolute;
    content: "";
    left: 0;
    top: -10px;
    width: 28px;
    height:3px;
    background:#006ab3;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.menuIcon span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    width: 28px;
    height:3px;
    background:#006ab3;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.menuIcon.active span {
    background:transparent;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.menuIcon.active span:before {
    transform: rotate(45deg);
    top: 0px;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.menuIcon.active span:after {
    transform: rotate(-45deg);
    bottom: 0px;
    transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}

.mo_menu.active .menuIcon.sidemenu_close{
    position: absolute;
    top: 15px;
    right: 15px;
}

.mo_menu.active .menuIcon.sidemenu_close{
    background-color:transparent;
}

.mo_menu.active .menuIcon.sidemenu_close i{
    font-size:32px;
    color:#Fff;
}

/* Topbar css */

.topbar{
	background:#24292d;
	padding:15px 0px;
}

.topbar_left ul{
	display:flex;
	align-items:center;
}

.topbar_left li{
	display:flex;
	align-items:center;
	margin-right:15px;
}

.topbar_left li a{
	margin-left:10px;
	color:#fff;
	font-size:16px;
}

.topbar_left li i{
    color: #006ab3;
    font-size: 18px;
    display: flex;
    background: #fff;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.topbar_right ul{
	display:flex;
	align-items:center;
}

.topbar_right ul li {
	margin-left:20px;
}

.topbar_inr{
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.banner_main{
  position: relative;
}

.banner_main svg{
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 99;
  fill: #fff;
  overflow: hidden;
}


.banner_slider .bnr_img img {
    width: 100%;
    object-fit: cover;
    position: relative;
    height:100%;		
}

.banner_slider .bnr_img{
	position: relative;
	height:700px;
}

.bnr_img img{
  width:100%;
}

.banner_slider .bnr_img:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
/*	background:#000000bd;
	background-image:url(../img/rrdiagonal-line.png)*/;
	z-index:99;
	width:100%;
	height:100%;
}

.banner_slider .NextArrow {
    position: absolute;
    top: 50%;
    right:2%;
    transform: translateY(-50%);
    background: #fff;
    width:50px;
    height:50px;
    z-index: 9;
    border-radius: 8px;
    cursor: pointer;
}

.banner_slider .PrevArrow {
    position: absolute;
    top: 50%;
    left:2%;
    transform: translateY(-50%);
    background: #fff;
    width:50px;
    height:50px;
    z-index: 9;
    border-radius: 8px;
    cursor: pointer;
}

.banner_slider button i{
	font-size:26px;
}

.banner_slider{
	margin-bottom:0 !important;
}

.slick-dots{
	display:none !important;
}

.about_main{
	padding:80px 0px;
  position: relative;
}

.about_main:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: url('../img/about-one-line.png');
  opacity: 0.1;
}

.about_hm:before{
  background:none;
  content:none;
}

.about_inr{
	display:flex;
	justify-content:space-between;
  flex-wrap:wrap;
}

.journy_year{
  border: 5px solid #24292d;
  padding: 15px;
  width:40%;
  background: #24292d;
  position:absolute;
  bottom:-30px;
  right:0;
}

.journy_year h2{
  color: #ffffff;
  font-size: 54px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 3px 3px 1px #006ab3;
  letter-spacing: 2px;
}

.journy_year p {
  font-size: 22px;
  font-weight:500;
  color: #fff;
}

.abt_img_big{
  position: relative;
}

.about_left, .about_right{
	width:48%;
}

.about_left h2{
	font-size:42px;
	line-height:45px;
	font-weight: 600;
	margin-bottom:15px;
	color: #24292d;
}

.about_left h2 span{
	color: #006ab3;
	font-size:42px;
	line-height:45px;
	font-weight: 600;
}

.about_left p {
	font-size:16px;
	font-weight:400;
	margin-bottom:15px;
	color: #24292d;
  line-height: 26px;
}

.about_left a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  padding: 15px 39px;
  font-weight:400;
  overflow: hidden;
  border-radius:5px;
  letter-spacing: 1px;
  background-color:#24292d;
  text-transform: capitalize;
  margin-top:15px;
  transition:all 0.5s;
}

.about_left a:hover{
  background:#006ab3;
  color:#fff;
}

.about_right{
	position: relative;
}

.about_right img{
	border-radius:10px;
  max-width:95%;
  width: 100%;
}

.abt_img_sml{
	position: absolute;
  bottom:-120px;
  right: 0;
}

/*strength_main Css*/
.strength_main{
	padding:30px 0px 60px;
	background:#24292d;
	margin-top:140px;
}

.strerngth_inr{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	column-gap:40px;
	margin-top:80px;
  margin-bottom:-100px;
}

.strength_item{
	background:#fff;
	padding:40px 20px;
	border-radius:5px;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.strength_item h2{
  font-size: 40px;
  font-weight: 600;
  color: #006ab3;
  line-height: 40px;
  margin-bottom: 10px;
}

.strength_item h3{
  font-size: 22px;
  font-weight: 500;
	color: #24292d;
}

.strerngth_btm h4{
	font-size:28px;
	color:#fff;
	font-weight:400;
}

.strerngth_btm ul{
	margin-top:15px;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	column-gap:30px;a
	justify-content:space-between;
}

.strerngth_btm li{
	padding:20px 10px;
	background:#006ab3;
	font-size:20px;
	text-align:center;
	color:#fff;
	font-weight:500;
	letter-spacing: 1px;
	border-radius:5px;
}


/* Production Facilities Css*/
.facilities_main{
	margin:80px 0px;
}

.facilities_main h2{
  font-size: 42px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom:10px;
  color: #24292d;
  text-align:center;
}

.facilities_main h3{
  font-size:20px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #24292d;
  text-align:center;
}

.facilities_main h2 span {
    color: #006ab3;
    font-size: 42px;
    line-height: 45px;
    font-weight: 600;
}

.facilities_inr{
	margin-top:50px;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	column-gap:30px;
	grid-row-gap:30px;
}

.faciities_itm{
	display:flex;
	align-items:start;
	border-bottom:1px solid #ccc;
	padding-bottom:15px; 
}

.faciities_itm i{
  color: #006ab3;
  font-size: 22px;
}

.faciities_itm p {
  font-size: 16px;
  font-weight:500;
  color: #24292d;
  margin-left:15px;
  /*margin-top:15px;*/
  line-height: 22px;
}

.our_product {
	background-size:cover !important;
	background-position: center !important;
	position:relative;
	/*padding:80px 0;*/
  margin-top: 120px;
}

.product_top{
  z-index:999999;
  position: relative;
}

.our_product h2 {
  font-size: 42px;
  line-height: 45px;
  font-weight: 600;
  color:#24292d;
  text-align: center;
}

.our_product h2 span {
    color: #006ab3;
    font-size: 42px;
    line-height: 45px;
    font-weight: 600;
}

/*.our_product:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000000d1;
}*/

.product_inr{
	z-index:9999;
    position: relative;
    margin:50px -15px 0;
}

.product_top{
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.slider_arrow .prev, .slider_arrow .next{
  background:#24292d;
  width:50px;
  height:50px;
  z-index: 9;
  border-radius: 8px;
  cursor: pointer;
  transition:all 0.8s;
  border:1px solid transparent;
}

.slider_arrow .prev:hover, .slider_arrow .next:hover{
	background:transparent;
	border:1px solid #fff;
	color:#fff;
}

.slider_arrow .prev{
	margin-right:15px;
}

.product_top button i {
    font-size: 26px;
    color:#fff;
}

.prdt_itm{
	margin:0 15px;
	position: relative;
	transition:all 0.7s;
	overflow:hidden;
}

.product_name{
	background:#fff;
	padding:15px;
	position: absolute;
    margin: 0 auto;
    width: 95%;
    right: 0;
    left: 0;
    border-radius: 8px;
    bottom:15px;
    z-index:999;
}

.product_name h3{
	font-size:20px;
	color:#24292d;
	font-weight:500;
}

.prdt_img{
	position: relative;
	cursor:pointer;
}

.prdt_img img{
	min-height:453px;
	object-fit:cover;
	transition:all 0.7s;
	overflow:hidden;
}

.prdt_itm:hover img{
	transform: scale(1.1);
}

.prdt_itm:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	cursor:pointer;
	height:100%;
	background:#0006;
	opacity:0;
	visibility:hidden;
	z-index:999;
	transition:all 0.7s;
}

.prdt_itm:hover:before{
	opacity:1;
	visibility:visible;
}

.product_name .read_more{
    position: absolute;
    background: #006ab3;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    top: -25px;
    font-size: 20px;
    transition:all 0.5s;
}

.product_name .read_more:hover{
	background:#000;
}

.testing_main{
	margin:80px 0px;
}

.testing_main h2 {
    font-size: 42px;
    line-height: 45px;
    font-weight: 600;
    color: #24292d;
    text-align: center;
}

.testing_main h2 span {
    color: #006ab3;
    font-size: 42px;
    line-height: 45px;
    font-weight: 600;
}

.testing_inr{
	margin-top:50px;
	display:grid;
	grid-template-columns:repeat(5,1fr);
	column-gap:30px;
}

.testing_itm{
	text-align:center;
	position: relative;
}

.testing_itm:before {
    position: absolute;
    top: 55px;
    left: 75%;
    width: 64%;
    height: 2px;
    background-color: #006ab3;
    content:'';
}

.testing_itm:last-child:before, .testing_itm:last-child:after{
	content:none;
}

.testing_itm:after {
    position: absolute;
    top: 49px;
    right: -10%;
    width: 14px;
    height: 14px;
    background-color: #24292d;
    content: "";
    border-radius: 50%;
}

.testing_itm h3{
    background:#24292d;
    width:80px;
    height:80px;
    border-radius:10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin:0 auto;
    letter-spacing: 2px;
}

.testing_itm h4{
	font-size:18px;
    font-weight:500;
    color: #24292d;
    margin-top:20px;
}

.test_icon{
	width: 110px;
    height: 110px;
    margin: 0 auto;
    border:2px solid #006ab3;
    border-radius:10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


footer{
  background: #24292d;
  padding:80px 0px;
  position: relative;
}

footer svg{
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 99;
  fill: #fff;
  overflow: hidden;
      transform: rotate(180deg);
}

.footer_clm h2{
	color:#fff;
	font-size:26px;
	font-weight:500;
	margin-bottom:30px;
	border-bottom:1px solid #444141;
  padding-bottom: 10px;
}

.footer_clm p{
	font-size:16px;
	font-weight:300;
	color:#cfcfcf;
  line-height: 26px;
}

.footer_inr{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	column-gap:80px;
}

.footer_clm ul.ftr_social{
	margin-top:30px;
	display:flex;
	align-items:center;
}

.footer_clm ul.ftr_social li{
	margin-right:20px;
}

.footer_clm ul.ftr_link{
	padding-left:20px;
}

.ftr_link li a{
	font-size:16px;
	font-weight:300;
	color:#cfcfcf;
}

.ftr_link li{
	margin-bottom:20px;
	list-style:disc;
}

.ftr_link li::marker{
	color:#cfcfcf !important;
}

.ftr_info li a{
	font-size:16px;
	font-weight:300;
	color:#cfcfcf;
  line-height: 22px;
  letter-spacing:1px;
}

.ftr_info li{
	margin-bottom:20px;
	display:flex;
	align-items:flex-start;
}

.ftr_info li i{
	color:#cfcfcf;
    font-size: 20px;
    padding-top: 5px;
    margin-right: 15px;
}

.newsletter{
	margin-bottom:-130px;
	z-index:9999;
	position:relative;
	display:none;
}

.newsletter_inr{
	background:#006ab3;
	padding:40px 40px;
	border-radius:8px;
}

.newsletter_inr h2{
	font-size:30px;
	font-weight:500;
	text-align:center;
	color:#fff;
	letter-spacing:1px;
}

.newsletter_inr p {
	font-size:18px;
	color:#fff;
	font-weight:300;
	text-align:center;
}

.newsletter_form{
	width:75%;
	margin:30px auto 0;
}

.form_row .mail{
	display:flex;
	align-items:center;
}

.mail input{
	width:80%;
	height:50px;
    border: 0;
    padding:10px;
    font-size:16px;
    color:#24292d;
    font-weight:400;
}

.mail button{
	display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    padding: 11px 30px;
    font-weight: 400;
    overflow: hidden;
    letter-spacing: 1px;
    background-color: #24292d;
    text-transform: capitalize;
    cursor:pointer;
}

.about_left p span{
	font-size:20px;
	font-weight:600;
	color: #006ab3;
}

.inner_banner{
  width:100%;
  height:500px;
  background-size:cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner_banner:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgb(0,0,0,0.35);
}

.inner_banner h1{
  position: relative;
  z-index:999;
  color:#fff;
  font-size:48px;
  text-align:center;
  font-weight:500;
}

.contact_main{
  margin:80px 0;
}

.contact_row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:30px;
}

.contact_itm{
  background:#f7f8fe8c;
  text-align:center;
  padding:60px 30px;
  border-radius:15px;
  cursor:pointer;
  transition:all 0.7s;
  border:2px solid transparent;
}

.contact_itm:hover{
  background:transparent;
  border:2px solid #24292d;
}

.contact_itm:hover i {
  background:transparent;
  border:2px solid #24292d;
  color:#24292d;  
}

.contact_itm h2{
  color:#24292d;
  font-family: 'Poppins';
  font-size:20px;
  font-weight:600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact_itm a{
  font-size:16px;
  font-family: 'Poppins';
  font-weight:500;
  color:#4c4b4a;
  line-height: 26px;
  word-break: break-all;
  display: block;
  margin-bottom: 8px;
}

.cnt_icon{
  margin-bottom:15px;
}

.contact_itm i{
  font-size:26px;
  background: #24292d;
  width:70px;
  height:70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 0 auto;
  color: #fff;
  transition:all 0.7s;
  border:2px solid transparent;
}


.contact_form form{
  max-width:800px;
  margin:30px auto 0;
}

.contact_form h2{
  color:#24292d;
  font-family: 'Poppins';
  font-size:42px;
  font-weight:600;
  line-height: 59px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
} 

.contact_form h2 span {
  color:#006ab3;
}

.contact_form form input, .contact_form form textarea{
  width:100%;
  height:55px;
  padding:12px 10px;
  color: #000;
  font-family: 'Poppins';
  font-size:14px;
  font-weight:500;
  letter-spacing: 1px;
  border:0;
  border:1px solid #24292d;
  border-radius:5px;
}

.contact_form form .frm_grp{
  margin-bottom:15px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact_form form textarea{
  height:150px;
  resize:none;
}

.contact_form form input::placeholder, .contact_form form textarea::placeholder{
  color:#b1b0b0;
  font-weight:400;
  font-family: 'Poppins';
}

.contact_form form button{
  color: #ffffff;
  font-family: 'Poppins';
  font-size:16px;
  font-weight:400;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  align-items: center;
  background:#24292d;
  border-radius: 5px;
  padding:14px 30px;
  justify-content: center;
  margin-top:20px;
  cursor:pointer;
  transition:all 0.9s;
  border:1px solid transparent;
}

.contact_form form button:hover{
  border:1px solid #24292d;
  background:transparent;
  color:#24292d;
}


.form_row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:30px;
}

.map{
  margin-top:80px;
  position: relative;
  transition:all 0.6s;
}

.map:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#1010108c;
  transition:all 0.6s;
}

.map:hover:before{
  opacity:0;
  background:transparent;
  z-index:-1;
}

.map iframe{
  width:100%;
  height:500px;
  display: block;
  cursor:pointer;
}

/* service_icon Css */
.service_icon{
  width:70%;
  margin-left:auto;
  margin-top: 80px;
}

.icon_itm{
  display:flex;
  justify-content:space-between;
  column-gap:20px;
}

.srvc_icon img{
  width: 70px;
  border: 1px solid #24292d;
  padding: 10px;
  border-radius: 5px;
}

.srvc_icon h3{
  font-size:20px;
  font-weight:500;
  margin-top: 10px;
}


/* Gallery Page */

.gallery_main{
  margin:80px 0px;
}

.gallery_inner{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 30px;
  grid-row-gap:30px;
}

.inside img{
  display:block;
  height: 450px;
  object-fit: cover;
  width: 100%;
}

.gallery-wrap,
#gallery {
  overflow: hidden;
}

#filters {
  margin: 1%;
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin:0 -15px;
}

#filters li {
  float: left;
  margin:0 15px 15px;
}

#filters li span {
  display: block;
  padding: 5px 20px;    
  text-decoration: none;
  color: #666;
  cursor: pointer;
  text-transform: uppercase;
  transition: all ease-in-out 0.25s;
  background: #ed3238;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.5s;
}

#filters li:hover span {
  color: #000;
}

#filters li span.active {
  background: #23245d;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.5s;
}

@media (max-width: 30em) {
  .wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .gallery-item {
    float: none;
    width: 100%;
  }
}


.magnific-img img {
    width: 100%;
    height: auto;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
/*button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}*/
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur{
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder s.mfp-close {
    cursor:pointer;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* Product Page Css */

.product_main{
  margin:80px 0px;
}

.product_inner{
  max-width:960px;
  margin:0 auto;
}

.product_inner img{
  border-radius:10px;
}

.product_inner h2  {
  color:#006ab3;
  font-size:28px;
  line-height: 45px;
  font-weight: 600;
  margin:15px 0px;
}

.product_inner p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #24292d;
  line-height: 26px;
}

.product_inner h3 {
  color:#24292d;
  font-size:22px;
  line-height: 38px;
  font-weight: 600;
  margin:30px 0px 0px;
}

.product_inner .product_inner_img{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:30px;
}

.product_inner .product_inner_img img{
  border-radius:5px;
  width:100%;
  height: 220px;
  object-fit: cover;  
}