@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600;700;800;900&amp;display=swap');

* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a:hover, a {
	text-decoration:none;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6,ul,li,span,p,b,strong {
	margin:0px;
	padding:0px;
}
body {
	font-size:14px;
	color:#464646;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/*--------header--------*/



@media (max-width: 768px) {
  .top-header {
    display: none !important;
  }
}
.container {
	max-width:1250px;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #22aba6;
}

::selection {
  background-color:#22aba6;
  color:#fff;
}

-webkit-::selection {
    background-color:#22aba6;
    color:#fff;
}

::-moz-selection {
    background-color:#22aba6;
    color:#fff;
}
/*********************/
.top-header{
	padding:8px 0px;
}
.contact-info i{
	color:#fff;
	font-size:16px;
	margin-right:15px;
}
.top-header .contact-info {
  display: flex;         /* make it a flexbox */
  align-items: center;   /* vertical alignment */
  gap: 30px;             /* <-- space between phone & email */
} 

.top-header {
  background: #ed1c24;   /* dark blue */
  color: #fff;
  font-weight:bold;
  font-size: 14px;
}


.header_top {
	background: #22aba6;
	padding:10px 0;
}
.header_heading span a {
	font-size:16px;
	color:#ffffff;
	font-weight:600;
	line-height:30px;
	letter-spacing:0.25px;
	display:block;
}
.header_tp_rht ul {
	float:left;
}
.header_tp_rht ul li {
	padding:3px 6px;
	display:inline-block;
}
.header_tp_rht ul li a {
	font-size:14px;
	color:#ffffff;
	font-weight:600;
	line-height:24px;
	letter-spacing:0.25px;
	display:inline-block;
}
.header_tp_rht ul li img {
	margin-right:10px;
	float:left;
}
.header_tp_rht ul li a:hover {
	color:#464646;
}


.social_icon ul {
	float:right;
}
.social_icon ul li {
	display:inline-block;
	margin-right:5px;
}
.social_icon ul li a i {
	display:inline-block;
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	border-radius:5px;
	background:#fff;
	box-shadow:0px 0px 10px rgba(29, 58, 83, 0.15);
}
.social_icon ul li a i.fa-facebook-f {
	color:#5d82d1;
}
.social_icon ul li a i.fa-youtube {
	color:#d91c19;
}
.social_icon ul li a i.fa-linkedin-in {
	color:#238cc8;
}
.social_icon ul li a i.fa-instagram {
	color:#c22b72;
}
.social_icon ul li a i:hover {
	background: #eff1f2;
}
/***********************/
.fixed-top {
	position:absolute;
	display:block;
	background: #fff;
	/* padding:6px 0; */
	border-top:2px solid #2e3192;
	box-shadow:0 2px 8px 0 rgba(0,0,0,.1);
}
.fixed-top.header-scrolled {
	transition:all.5s ease;
	background:rgb(255 255 255 / 90%);
	border-top:2px solid #2e3192;
	box-shadow:0 2px 2px 0 rgb(245 245 245 / 85%);
}
.header-scrolled .scrollto img {
	height: auto;
	transition: all.5s ease;
}
.header-scrolled .navigation-right-top {
	display: none;
}
.logo {
	transition: all.5s ease;
	width:22%;
	margin: 0px 0;
	padding-left:20px;
}
.header-scrolled {
    position: fixed;
}
.scrollto img {
	width:90%;
	height:auto;
	transition:all.5s ease;
}
.main-nav {
	float:right;
	display: flex;
	transition:all.3s ease-in-out;
}
.main-nav > ul {
	margin: 10px 0;
	display: block;
	float: right;
	transition:all.5s ease;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
	padding: 5px 0px;
}
.main-nav a {
	text-decoration:none !important;
	color: #464646;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.50px;
	position: relative;
	display: inline-block;
	font-size: 14px;
	padding: 2px 0px;
}
.nav-link{
	color:black !important;
}
.nav-link:hover{
	color:#2e3192 !important;
}
.main-nav .drop-down ul li:after {
	display:none;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #2e3192;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: ease all 0.3s;
	padding: 6px;
    background-color: rgba(255,255,255,1);
	box-shadow:0 2px 8px 0 rgba(0,0,0,.1);
    border: none;
	border-top: 3px solid #2e3192;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 200px;
	position: relative;
}
.main-nav .drop-down ul li {
	border-bottom: 1px solid #f4f4f7;
	margin-top:0px;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.main-nav .drop-down ul li a {
	padding: 6px 12px;
    color: #464646;
	font-weight:600;
    transition: all 200ms linear;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
	width:100%;
}
.main-nav .drop-down ul > .drop-down ul li a {
	padding:0 10px;
	font-weight:500;
	line-height:28px;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #fff;
    background-color: #2e3192;
}
.main-nav .drop-down > a:after {
	content: "\f107";
    font-family: FontAwesome;
    padding-left: 5px;
    font-size: 15px;
}
.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 10px);
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a:after {
	content: "\f141";
	position: absolute;
	right: 15px;
}
/*******************/
.padding_none {
	padding-right:0px;
	padding-left:0px;
}
.contact_header {
    display: flex;
	padding-left: 20px;
}
.anchor-wrapper {
    display: flex;
}
.contact_header .anchor-wrapper.header-anchor a {
    min-width: 210px;
    padding: 0 20px;
    background: #e7f8f8;
	color: #2e3192;
    font-size: 15px;
    font-weight: 700;
    transition: .5s;
}
.contact_header .anchor-wrapper a {
    position: relative;
    width: 55px;
    background: #2e3192;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_header .anchor-wrapper.header-anchor a::before {
    background: #2e3192;
}
.contact_header .anchor-wrapper a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fff;
    left: auto;
    transition: .5s;
}
.contact_header .anchor-wrapper.header-anchor a span {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}
.contact_header .anchor-wrapper.header-anchor a::before {
    background: #2e3192;
}
.contact_header .anchor-wrapper a:hover::before {
    left: 0;
    width: 100%;
}
.contact_header .anchor-wrapper.header-anchor a:hover {
    color: #fff;
    transition: .5s;
}
.contact_header .anchor-wrapper a {
    position: relative;
    width: 55px;
    background: #2e3192;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_header .anchor-wrapper a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fff;
    left: auto;
    transition: .5s;
}
.contact_header .anchor-wrapper a svg {
    width: 22px;
    z-index: 1;
}
.contact_header .anchor-wrapper a:hover::before {
    left: 0;
    width: 100%;
}
.contact_header .anchor-wrapper a:hover svg path {
    fill: #2e3192;
    transition: .5s;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -270px;
	width: 270px;
	padding-top: 18px;
	background: #fff;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #464646;
	padding: 8px 12px;
	font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    position: relative;
    font-family: Montserrat;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #2e3192;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 30px;
	transition: all 0.4s;
	outline: none;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 14px 14px 0 0;
	color: #002359;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(19, 39, 57, 0.8);
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
/***********************/
.banner-owl-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* so click goes through except buttons */
}

.banner-owl-slider .owl-nav button {
 
 
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  

  
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* re-enable clicking for buttons */
}

.banner-owl-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}
/*#home-demo .owl-nav {
	position: absolute;
	bottom: 0px;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0px;
	background: #fff;
	width: fit-content;
	min-width: 200px;
}*/
#home-demo .owl-dots {
	position: absolute;
	bottom: 0;
	left: 60px;
	text-align: center;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	margin-left: 0;
}
#home-demo .owl-nav button.owl-prev {
	border-right: 1px solid #5051522b !important;
}
#home-demo .owl-nav button.owl-next {
	border-left: 1px solid #5051522b !important;
}
#home-demo .owl-nav button span {
	font-size: 80px;
	line-height: 1;
	margin-top: -5px;
	color: white;
	font-weight:500;
}
#home-demo .owl-nav button {
	width: 50px;
	height: 50px;
	margin: 0px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	transition: 0.6s all;
}
#home-demo .owl-dot.active {
	width: 10px !important;
	height: 10px !important;
	background: #222 !important;
}
#home-demo .owl-dots .owl-dot {
	width: 5px;
	height: 5px;
	background: #35323396;
	border-radius: 50px;
	margin: 0px 5px;
	transition: 0.6s all;
}
/**********************/
#banner_btm_main {
    background: #E8F8F8;
	padding:80px 0;
	position: relative;
}
.group_company_bg {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	background-repeat:no-repeat;
}
/*.group_company_bg:after {
	width:100%;
	height:100%;
	opacity:96%;
	background:#18a568;
	display:block;
	top:0;
	left:0;
	position:absolute;
	content:'';
}*/
.banner_btm_dtl span {
	font-size:18px;
	font-weight:700;
	letter-spacing:1px;
	display:block;
	color:#fff;
	text-align:center;
	padding-bottom:10px;
}
.banner_btm_dtl h2 {
	font-size:40px;
	font-weight:700;
	letter-spacing:1px;
	display:block;
	color:#fff;
	text-align:center;
	padding-bottom: 20px;
	text-transform:capitalize;
}
/**********************/
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  position: relative;
  z-index: 2; /* keep image on top */
  max-width: 100%;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;    /* adjust spacing */
  left: 15px;
  width: 100%;
  height: 100%;
  background: #ed1c24;
  z-index: 0;
}

#about_main {
	padding:0px 0;

	position:relative;
}
.about_home {
	/*-webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
    -webkit-transition: box-shadow 0.3s ease-in-out;
    -moz-transition: box-shadow 0.3s ease-in-out;
    -ms-transition: box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
    /*transition: box-shadow 0.3s ease-in-out;*/
    padding-right: 10%;
    padding-left: 10%;
    background-color: #ffffff;
    padding-top: 70px;
    padding-bottom: 20px;
    /*margin-top: -125px;*/


    position: relative;
}
/*.about_home::after {
	background: url(../images/about_home_bg.jpg);
    position: absolute;
    content: '';
    right: 0;
    opacity: .1;
    bottom: 0;
	z-index:1;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
}*/
.hm_company_hed h1 {
	font-size:35px;
	color:#464646;
	letter-spacing:1px;
	font-weight:700;
	display:block;
	text-transform:capitalize;
	text-align:left;
	padding-bottom:20px;
}
.hm_company_hed h1 span {
	color:#2e3192;
}
.hm_company_hed p {
	letter-spacing:0.30px;
	line-height:24px;
	text-align:left;
	display:block;
	font-size:14px;
	font-weight:500;
	color: #464646;
}
.hm_company_hed {
	padding-bottom:30px;
	position: relative;
    z-index: 2;
}
.about_other_sec {
	border-right-width: 1px;
	padding-right: 10%;
    padding-left: 10%;
    border-right-color: rgba(0,0,0,0.1);
    border-right-style: solid;
}
.about_other_sec0 {
	padding-right: 10%;
    padding-left: 10%;
}
.abt_dtl p {
	letter-spacing: 0.30px;
    display: block;
    font-size: 14px;
    font-weight: 500;
	color: #464646;
}
.summary {
	font-size:18px;
	color: #464646;
	font-weight:700;
	letter-spacing:1px;
	display:block;
	padding-bottom:10px;
}
.summary span {
	color:#2e3192;
}
.certificate_logo {
	position: relative;
    z-index: 2;
}
.certificate_logo ul {
	display: flex;
    justify-content: center;
}
.certificate_logo ul li {
	display: block;
    float: left;
    width: 18%;
    border-right-width: 1px;
    border-right-color: rgba(0,0,0,0.1);
    border-right-style: solid;
    padding: 0 30px;
}
.certificate_logo ul li:last-child {
	border-right-width: 0px;
}
/**********************/
#product_main {
	padding:60px 0 40px 0;
}
.hm_product_hed h3 {
    letter-spacing: 1px;
    display: block;
    position: relative;
    font-weight: 600;
	text-align:center;
	font-size:28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.hm_product_hed h3:before {
    content: "";
    width: 40px;
    height: 5px;
    left: 50%;
    transform: translate(-50px, 5px);
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-radius: 50px;
}
.hm_product_hed h3:after {
    content: "";
    background: #ecf0f4;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
    left: 50%;
    transform: translate(-50px, 5px);
}
.product_wrapper {
	position: relative;
	cursor: pointer;
	padding-bottom:30px;
}
.content-overlay {
	bottom: 0;
	width: 100%;
	padding: 15px 20px;
	margin: 0px;
	/* background: #f3f3f3; */
	background: #fcfcfc;
	border-bottom: 4px solid #2e3192;
}
.content-overlay h6 {
	margin: 0px;
	line-height: 30px;
	position: relative;
	color: #464646;
	transition: 0.8s all;
	padding-left: 50px;
	font-size: 18px;
	font-weight:600;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product_wrapper:hover h6 {
	color:#2e3192;
}
.content-overlay h6:before {
	content: "";
	width: 40px;
	height: 4px;
	position: absolute;
	background: #2e3192;
	left: 0;
	top: 50%;
	margin-top: -1px;
	transition: 0.8s all;
}
.product_wrapper:hover .content-overlay h6 {
	padding: 0px 40px;
}
.product_wrapper:hover .content-overlay h6:before {
	content: "";
	left: -10px;
}
/**********************/
#about_number {
    position: relative;
    margin-bottom: -80px;
	z-index:1;
}
.counter	 {
	border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: #2e3192;
    padding: 40px 20px;
}
.count_box {
    position: relative;
}
.count_box .transperrent {
    position: absolute;
    left: 50%;
    top: 50%;
    font-weight: 900;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    color: #f4f7fa;
    font-size: 9rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(236 240 244 / 30%);
    display: inline-block !important;
    vertical-align: middle;
    overflow: hidden;
}
.count_box h5 {
    font-size: 42px;
    color: #fff;
    font-weight: 900;
    text-align: center;
	font-family: 'Jost', sans-serif;
}
.count_box .counter_detail {
    display: block;
    font-weight: 600;
    font-size: 16px;
	text-align:center;
	color:#fff;
	letter-spacing:0.30px;
	text-transform: capitalize;
}
.counter_detail span {
    display: block;
    font-weight: 500;
    font-size: 16px;
	letter-spacing:0.30px;
	text-transform: capitalize;
}
.counter ul {
	display:flex;
}
.counter ul li {
	width: 25%;
    display: inline-flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
}
/**********************/
#industry_main {
	position:relative;
	background: url(../images/industry_bg.jpg.jpeg) no-repeat;
	padding:150px 0 70px 0;
	background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#industry_main:before {
	width: 100%;
    height: 100%;
    opacity: .9;
    /* background: #18a568; */
    background: rgb(1 9 59 / 90%);
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    content: '';
}
.industry_heading h3 {
    letter-spacing: 1px;
    display: block;
    position: relative;
	text-align:center;
    font-weight: 600;
	color:#fff;	
	font-size:28px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.industry_heading h3:before {
    content: "";
    width: 40px;
    height: 5px;
    left: 50%;
    transform: translate(-50px, 5px);
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-radius: 50px;
}
.industry_heading h3:after {
    content: "";
    background: #ecf0f4;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
    left: 50%;
    transform: translate(-50px, 5px);
}
.industry_heading span {
    letter-spacing: 0.30px;
    line-height: 24px;
    display: block;
	text-align:center;
    font-size: 16px;
    font-weight: 500;
	padding:0 10%;
	padding-bottom:20px;
    color: #fff;
}
.industry_wrapper {
    height: auto;
    float: left;
    margin-top:-50px;
    z-index: 1;
    position: relative;
    padding: 7px;
    background-color: #ecf0f4;
	margin-bottom:25px;
}
.mr-tp {
    margin-top:30px;
	margin-bottom:0px;
}
.industry_box_link {
    position: relative;
    cursor: pointer;
}
.industry_box_link img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: all 0.5s ease 0s;
}
.industry_box_link .industry_box_content {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotateY(180deg) scale(0.5);
    transition: all 0.45s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry_box_link .industry_box_content:before {
    content: "";
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
}
.group-link {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 60px;
    left: 0;
    right: 0;
}
.industry_box_link .icon {
    display: inline-block;
    list-style: none;
    position: relative;
}
.industry_box_link .icon li {
    display: inline-block;
}
.industry_box_link .icon li i {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.5s ease 0s;
    background: #2e3192;
    color: #fff;
}
.industry_name {
    width: auto;
    height: auto;
    position: absolute;
    right: 0px;
    bottom: 20px;
    background-color: rgb(46 49 146 / 60%);
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
}
.industry_name span {
    width: 100%;
    height: auto;
    font-weight: 600;
    letter-spacing: 0.50px;
    font-size: 17px;
    color: #fff;
}

.industry_box_link:hover .industry_box_content {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}
.industry_wrapper:hover .industry_name {
    display: none;
}
/**********************/
#client_main {
	position: relative;
    width: 100%;
    height: auto;
    background: #ecf0f4;
    z-index: 0;
    padding: 35px 0px 80px 0;
	margin-top:60px;
}
#client_main::before {
    transform: rotate(-2deg);
    transform-origin: 3% 0;
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 91%;
    background: inherit;
    content: '';
    position: absolute;
}
.hm_client_hed h3 {
    letter-spacing: 1px;
    display: block;
	text-align:center;
    position: relative;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 30px;
}
.hm_client_hed h3:before {
    content: "";
    width: 40px;
    height: 5px;
    left: 50%;
    transform: translate(-50px, 5px);
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-radius: 50px;
}
.hm_client_hed h3:after {
    content: "";
    background: #fff;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
    left: 50%;
    transform: translate(-50px, 5px);
}
.client-wrapper {
    border-radius: 10px;
    background-color: #fff;
    display: block;
    margin: 5px;
    box-shadow: 0 2px 2px 0 rgb(245 245 245 / 85%);
}
.client-wrapper img {
    padding: 10px;
}
/**********************/
#footer_bg {
    background: #111;
    padding: 80px 0px 30px 0px;
    background-size: cover;
}
.icon-default {
    position: absolute;
    left: 50%;
    margin-top: -110px;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
    text-align: center;
}
.scrollup {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    text-indent: -9999px;
    z-index: 99999;
    background: url(../images/arrow.png) no-repeat;
}
.footer_contact_hed h6 {
	color: #fff;
	text-align: left;
	margin-bottom: 15px;
	padding-bottom:10px;
	font-size:18px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:1px;
	position:relative;
}
/*.footer_contact_hed h6:before {
    content: "";
    width: 20px;
    height: 5px;
    left: 0;
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-radius: 50px;
}
.footer_contact_hed h6:after {
    content: "";
    background: #fff;
    width: 40px;
    height: 5px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
    left: 0;
}*/
.footer_contact {
    position: relative;
    text-align: left;
    font-size: 15px;
    margin-bottom: 20px;
}
.footer_contact ul {
    position: relative;
    z-index: 3;
}
.footer_contact ul li {
    color: #ecf0f4;
    font-weight: 500;
	position: relative;
    padding-left: 25px;
    line-height: 22px;
    font-size: 15px;
	padding-bottom: 5px;
	letter-spacing:0.30px;
}
.footer_contact ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
    color: #23527c;
    font-weight: 900;
}
.foter_navigation ul li {
    padding-bottom: 0px;
}
.foter_navigation ul li a {
    position: relative;
    font-size: 15px;
    color: #b0b0b0;
	font-weight:500;
    letter-spacing: 0.30px;
    display: block;
    padding-left: 15px;
}
.foter_navigation ul li a:hover {
	color:#23527c;
}
.foter_navigation ul li a:before {
    width: 10px;
    height: 2px;
    background: #ecf0f4;
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
}
/*.foter_navigation ul li a:after {
    width: 2px;
    height: 10px;
    background: #ecf0f4;
    position: absolute;
    content: '';
    top: 6px;
    left: 4px;
}*/
.foter_navigation ul li a:hover:before {
    background: #fff;
}
.foter_navigation ul li a:hover:after {
	display:none;
}
.ftr_img {
    position: absolute;
    top: 0;
    margin-top: -114px;
}
.ftr_img img {
	padding: 7px;
    background-color: #ecf0f4;
}
.pdf_link {
    position: absolute;
    bottom: 0;
    width: 85%;
    height: 60px;
    z-index: 999;
    background: url(../images/pdf.png) no-repeat left #ecf0f4;
    padding: 10px 15px 10px 10px;
	background-position: left 14px top 0px;
}
.pdf_link h5 {
    text-align: right;
    font-size: 15px;
    letter-spacing: 0.30px;
    font-weight: 600;
    color: #464646;
}
.pdf_link h5:hover {
	color:#02923d;
}
/**********************/
.foot-bottom {
	padding:30px 0;
	background:#000000;
}
.foot-btm-head p {
	color:#b0b0b0;
	font-size:14px;
	font-weight:500;
	text-align:center;
	letter-spacing: 0.30px;
}
.foot-btm-head p a {
	color:#fff;
	font-weight:600;
}
/**********************/
#inner_banner {
	background-image: linear-gradient(rgb(1 9 59 / 15%),rgb(1 9 59 / 75%)),url(../images/product-2/banner.png);
    background-size: auto,cover;
    background-position: center;
    height: 55vh;
}
.inner_banner_sec {
	position:relative;
	padding-top:13%;
}
.inner_banner_sec h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: #fff;
    padding-bottom: 20px;
    text-transform: capitalize;
}
.inner_banner_sec a span {
	width:20px;
	height:10px;
	border:2px solid #fff;
	padding:0 5px;
	color:#fff;
	opacity:.5;
	transition:0.3s;
	margin-right:10px;
}
.inner_banner_sec a {
	font-size:15px;
	color:#fff;
	padding-bottom:10px;
	display:inline-block;
	font-weight:500;
	letter-spacing:0.30px;
	transition:0.3s;
}
.inner_banner_sec a:hover, .inner_banner_sec a:hover span {
	text-decoration:underline;
	opacity:1;
}
/**********************/
#product_details {
	padding:60px 0;
}
.product_oveview h2 {
	letter-spacing: 1px;
    display: block;
    position: relative;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 10px;
	padding-top:15px;
    margin-bottom: 30px;
}
.product_oveview h2:before {
    content: "";
    width: 40px;
    height: 5px;
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
	left:0;
    border-radius: 50px;
}
.product_oveview h2:after {
    content: "";
    background: #ecf0f4;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
	left:0;
    border-radius: 50px;
}
.overview_para p {
	letter-spacing: 0.30px;
    line-height: 24px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #464646;
}
#product_categories {
	position: relative;
    width: 100%;
    height: auto;
    background: #7a7df6;
    z-index: 0;
    padding: 35px 0px 50px 0;
    margin-top: 30px;
}
#product_categories::before {

}
.inn_product_bx {
	padding-left:30px;
	padding-right:30px;
	transition: all .4s ease-in-out 0s;
	margin-bottom:30px;
}
.inn_product_bx:hover .product_feature {
	box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
	border-bottom: 4px solid #2e3192;
}
.product_feature {
	overflow: hidden;
	-webkit-transition: box-shadow .3s ease-in-out 0s;
    transition: box-shadow .3s ease-in-out 0s;
	border-bottom: 4px solid #464646;
}
.product_feature figure {
	overflow:hidden;
	margin-bottom:0px;
}
.product_feature figure img {
	-webkit-transition: transform .45s ease-in-out;
}
.inn_product_bx:hover img {
	-moz-transform: scale(1.03);
	-webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
	
}


.img-fluid{
	
background:#fff;
}
.product_bx_dtl {
	padding:30px 25px;
	background:rgb(255 255 255 / 40%);
	min-height:160px;
}
.inn_product_bx:hover .product_bx_dtl {
	background:#fff;
}
.product_bx_dtl span {
	transition: 0.8s all;
	padding-bottom:10px;
    font-size: 18px;
    font-weight: 600;
	color:#2e3192;
	display:block;
}
.product_bx_dtl p {
	letter-spacing: 0.30px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #464646;
}
/**********************/
#related_product {
	padding:50px 0;
}
.product_slide {
	padding: 0 10px;
    display: block;
}
/*.produt_banner_view {
	margin-top:-120px;
}*/
.produt_banner_view img {
	padding:15px;
	background:#fff;
	box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.product_right_sec {
	padding-left:30px;
}
.product_descripton {
	padding-bottom:20px;
}
.product_descripton h2 {
	letter-spacing: 1px;
    display: block;
    position: relative;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.product_descripton h2:before {
    content: "";
    width: 40px;
    height: 5px;
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
	left:0;
    border-radius: 50px;
}
.product_descripton h2:after {
    content: "";
    background: #ecf0f4;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
	left:0;
    border-radius: 50px;
}
.product_descripton p {
	letter-spacing: 0.30px;
    line-height: 24px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #464646;
}
.quote_btn {
	padding-top:50px;
	text-align:center;
}
.quote_click {
	position:relative;
	padding:10px 30px;
	display:inline-flex;
	/* width:200px; */
	color:#2e3192;
	line-height:30px;
	font-size:16px;
	font-weight:600;
	letter-spacing:0.30px;
	background:#ecf0f4;
	transition:all 0.3s;
	z-index:1;
	justify-content:center;
	box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.quote_click:hover {
	background:#2e3192;
	color:#fff;
}
.quote_click:before {
	position:absolute;
	content:'';
	bottom:0;
	right:0;
	z-index:-1;
	background:#2e3192;
	clip-path:polygon(100% 100%, 0 100%, 100% 0);
	height: 20px;
    width: 20px;
	transition:all 0.3s;
}
.quote_click:hover::before {
	width:100%;
	height:100%;
}
.quote_click:after {
	position:absolute;
	content:'';
	top:0;
	left:0;
	z-index:-1;
	background:#2e3192;
	clip-path:polygon(0 0, 0 100%, 100% 0);
	height: 20px;
    width: 20px;
	transition:all 0.3s;
}
.quote_click:hover::after {
	width:100%;
	height:100%;
}
.product_descripton span {
	font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: #2e3192;
    padding-bottom: 10px;
}
.product_descripton ul li p {
	letter-spacing: 0.30px;
    line-height: 24px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #464646;
	padding-left: 25px;
	text-transform: capitalize;
	position: relative;
}
.product_descripton ul li i {
    font-size: 12px;
    color: #2e3192;
    margin-right: 5px;
    position: absolute;
    content: '';
    top: 7px;
    left: 0;
    display: block;
}
.product_descripton h3 {
	letter-spacing: 1px;
    display: block;
    position: relative;
    font-weight: 600;
    text-align: center;
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.product_descripton h3:before {
    content: "";
    width: 40px;
    height: 5px;
    left: 50%;
    transform: translate(-50px, 5px);
    background: #2e3192;
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-radius: 50px;
}
.product_descripton h3:after {
    content: "";
    background: #fff;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
    left: 50%;
    transform: translate(-50px, 5px);
}
.inn_prod_table {
	background:#fff;
	box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
	padding:15px;
	margin-bottom:20px;
}
.table-bordered {
	border:0px;
}
.table {
	margin-bottom:0px;
}
.inn_prod_table th {
	font-size: 16px;
    color: #fff;
	text-align:center;
	font-weight:500;
	letter-spacing:0.30px;
	border-bottom:2px solid #ecf0f4!important;
	background:#234d77;
}
.inn_prod_table td {
	border:0px;
	border-right:2px solid rgba(0,0,0,0.1);
    color: #464646;
	letter-spacing:0.30px;
	text-align:center;
	font-weight:600;
	vertical-align: middle;
	font-size:14px;
	text-transform: capitalize;
}
.inn_prod_table td:last-child {
	border-right:0px;
}
.inn_prod_table tr:nth-child(even) {
	background: #ecf0f4;
}
.inn_prod_table tr:nth-child(odd) {
	background: #fff;
}
.produt_images {
	padding: 10px;
    background: #2e3192;
    box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.produt_images img {
	background: #eceff4;
}
.produt_title span {
	font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
	text-align:center;
	padding-top:15px;
    color: #fff;
    padding-bottom: 15px;
}
/**********************/
.contact_left_hed h2 {
	letter-spacing: 1px;
    display: block;
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
	padding-right:60px;
}
.contact_enquiry {
    padding: 30px 30px;
    background-color: #ecf0f4;
	display: block;
	border-radius:10px;
	position: sticky;
    top: 70px;
}
.contact_enquiry span {
    letter-spacing: 1px;
    display: block;
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 15px;
	text-align:center;
	color:#2e3192;
}
.form-group label {
	color: #464646;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 0.30px;
}
.contact_enquiry .form-group input[type="text"], .contact_enquiry .form-group input[type="tel"], .contact_enquiry .form-group input[type="email"], .contact_enquiry select {
    color: #464646;
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.30px;
    background: #fff;
    height: 40px;
    margin-bottom: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.form-group {
	margin-bottom:0px;
}
.contact_enquiry .form-group textarea[type="text"] {
    display: block;
    width: 100%;
    padding: 5px 10px;
    color: #464646;
    height: 90px;
	font-weight:500;
    font-size: 14px;
	border:0px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.butn-bg {
	font-size: 15px;
    padding: 12px 40px;
    background: #02923d;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    border: 0px;
    margin-top: 20px;
}
.butn-bg:hover {
	color:#fff;
	background:#3c3c3c;
}
.address-block {
	margin-left:50px;
}
.address-top-block {
    width: 100%;
    background-color: #2e3192;
    padding-left: 40px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.address-heading {
    font-size: 21px;
    font-weight: 600;
	letter-spacing:1px;
    padding:20px 0;
    color: #fff;
}
.address-dtl-block {
    padding: 32px 30px 20px 30px;
}
.address-dtl-heading {
    color: #464646;
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}
.address-dtl-block ul li, .address-dtl-block ul li a {
	font-size: 14px;
    letter-spacing: 0.30px;
    font-weight: 600;
    color: #464646;
    padding-top: 6px;
}
.address-dtl-block ul li a:hover {
	color: #f12017;
}
.location {
	padding:0 30px 20px 30px
}
.location iframe {
	width: 100%;
    height: 250px;
    padding: 7px;
    background-color: #ecf0f4;
}
/**********************/
.inn_company_hed h1 {
	font-size:35px;
	color:#464646;
	letter-spacing:1px;
	font-weight:700;
	display:block;
	text-transform:capitalize;
	padding-bottom:20px;
}
.inn_company_hed h1 span {
	color:#2e3192;
}
.inn_company_hed p {
	letter-spacing:0.30px;
	line-height:24px;
	display:block;
	font-size:14px;
	padding-bottom:10px;
	font-weight:500;
	color: #464646;
}
.inn_company_hed {
	padding-bottom:15px;
}
.inner_vms_dtl {
	border: 2px solid #ecf0f4;
    padding: 2rem;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    display: block;
}
.inner_vms_dtl_middle {
    background: #2e3192;
    box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.15);
    text-align: center;
    display: block;
	border: 2px solid #ecf0f4;
    padding: 2rem;
    border-radius: 25px;
    height: 100%;
}
.inner_vms_dtl_middle span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: #fff;
    padding-bottom: 10px;
	padding-top:10px;
	text-align:center;
}
.inner_vms_dtl span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: #2e3192;
    padding-bottom: 10px;
	padding-top:10px;
	text-align:center;
}
.inner_vms_dtl_middle p {
	letter-spacing:0.30px;
	line-height:24px;
	display:block;
	font-size:14px;
	padding-bottom:10px;
	font-weight:500;
	color: #fff;
	text-align:center;
}
.inner_vms_dtl p {
	letter-spacing:0.30px;
	line-height:24px;
	display:block;
	font-size:14px;
	padding-bottom:10px;
	font-weight:500;
	color: #464646;
	text-align:center;
}
.inner_vms_icon img {
    width: 65px;
    margin: 0 auto;
    display: table;
}
.inner_abt_dtl {
	padding-bottom:15px;
}
.inner_abt_dtl span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: #2e3192;
    padding-bottom: 10px;
}
.inner_abt_dtl p {
    letter-spacing: 0.30px;
    line-height: 24px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #464646;
	padding-bottom:10px;
}
/**********************/
.certificate_bx {
    text-align: center;
    padding: 15px;
    border: 2px solid #3c3c3c;
	margin-bottom:15px;
}
.certificate_bx span {
	line-height: 30px;
    color: #464646;
    font-size: 16px;
    font-weight: 600;
	display:block;
	padding-top:15px;
}
/**********************/
.vacancy-section {
      padding: 50px 0;
    }
    .vacancy-title {
      border-bottom: 2px solid #e74c3c;
      display: inline-block;
      margin-bottom: 30px;
      font-size: 28px;
      font-weight: 600;
    }
    .job-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 25px;
      background: #fff;
      box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
    }
    .job-card h5 {
      font-weight: 600;
      color: #2c3e50;
    }
    .job-card .requirement {
      font-weight: 500;
      color: #e74c3c;
      margin-bottom: 15px;
    }
    .job-description {
      background: #f9f9f9;
      border-radius: 6px;
      padding: 15px;
      font-size: 15px;
      line-height: 1.6;
    }
	
	.job-header{
		padding:20px;
	}