
* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a {
	text-decoration:none;
}
a:hover, a:focus {
	text-decoration:none;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6,p,b,strong,ul,li,span,ol {
	margin:0px;
	padding:0px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
}
body {
	font-size:15px;
	color:#000;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
}
/************************/
html {
	scroll-behvior:smooth;
}
::-webkit-scrollbar {
	-webkit-appearance:none;
}
::-webkit-scrollbar:vertical {
	width:7px;
}
::-webkit-scrollbar-thumb {
	border-radius:10px;
	border:none;
	background-color:#7c797a;
}
::-webkit-scrollbar:horizontal {
	height: 7px; 
}
::-webkit-scrollbar-track {
	background-color: rgba(239, 239, 239, 0.5); 
}
/************************/
.fixed-top {
	position:relative;
	display:block;
	background:#fff;
	top:0px;
	padding:10px 0;
	box-shadow:0px 0px 12px rgb(0 0 0 / 30%);
}
.header-scrolled {
    position: fixed;
}
.scrollto img {
	width:230px;
	height:auto;
	transition: all 0.4s ease;
}
.logo {
	width: 15%;
    margin-right: 5%;
}
.second_logo {
	width: 15%;
    float: right;
    display: block;
    margin-top: -5%;
}
.main-nav {
	/* float:right; */
	transition:all.3s ease-in-out;
}
.main-nav > ul{
	/* margin: 2.8% 0; */
	margin: 1% 0;
    display: table;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	color: #333333;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.50px;
    position: relative;
    display: inline-block;
	font-size: 14px;
	padding:6px 6px;
}
.main-nav ul li:after {
    position: absolute;
    bottom:0;
    left: 0;
	right:0;
	margin:0 auto;
    width: 90%;
    height: 2px;
    content: '';
    background-color: #0000a5;
    opacity: 0;
    transition: all 200ms linear;
}
.main-nav ul li:hover:after {
	bottom: 0px;
	opacity: 1;
}
.main-nav .drop-down ul li:after {
	display:none;
}
.main-nav li:last-child {
	border-right:0px;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #0000a5;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: ease all 0.3s;
	padding: 10px;
    background-color: rgba(255,255,255,1);
	box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    border: none;
    border-radius: 3px;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 180px;
	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: 8px 10px;
    color: #333333;
    border-radius: 2px;
	font-weight:500;
    transition: all 200ms linear;
	font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
	width:100%;
}
.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: #0000a5;
}
.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}
.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: "\f105";
	position: absolute;
	right: 15px;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: #f9f9f9;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #333333;
	padding: 10px 20px;
	font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    font-family: Montserrat;
}
.mobile-nav li {
	border-bottom:1px solid #000;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #ee2324;
	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: 24px;
	transition: all 0.4s;
	outline: none;
	line-height: 1;
	cursor: pointer;
	text-align: right;
	background:#f9f9f9;
	min-height:100%;
}
.mobile-nav-toggle i {
	margin: 0 15px 0 15px;
	color: #010099;
}
.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: #010099;
}
/************************/
.home-slider .caption {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0;
    height: 100%;
    margin: 0 auto;
    display: flex;
}
.caption-left {
    position: relative;
	height: 85%;
    top: 15%;
    color: #fff;
    z-index: 9;
    width: 30%;
    padding-top: 12%;
    padding-left: 20px;
    background-image: linear-gradient( transparent, rgb(230 28 28 / 60%) 35%);
}
.caption-left h1 {
    width: 900px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
	padding-bottom:15px;
	text-align: left;
}
.caption-left span {
	color:#fff;
	font-size:16px;
	padding-bottom:30px;
	letter-spacing:0.50px;
	line-height:22px;
	display:block;
}
.common-btn {
	border:2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	width: 100px;
	font-weight:bold;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius:20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.common-btn:hover:before {
    width: 100%;
    height:100%;
    left:0px;
}
.common-btn:before {
	position: absolute;
	content: "";
	left:-4px;
	width:0%;
	height:100%;
	background: #fff;
	z-index: -1;
	transition: all 0.3s ease-in-out;
	top: 0;
}
.common-btn:hover {
	color: #000495;
}
.slider-section .common-btn {
    width: 60%;  
    font-size: 15px;
}
.carousel-inner {
	position:relative;
}
#carousel .carousel-control {
	background:none;
	top:46%;
	font-size:20px;
	text-align:center;
	width:40px;
	height:40px;
	opacity:1;
	position:absolute;
}
#carousel .carousel-control-right {
	right:5%;
}
#carousel .carousel-control-left {
	left:2%;
}
#carousel .carousel-control-right span {
	-webkit-transform:translate3d(100%, 0, 0);
    transform:translate3d(100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel .carousel-control-left span {
	-webkit-transform:translate3d(-100%, 0, 0);
    transform:translate3d(-100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel:hover .carousel-control-right span {
	-webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel:hover .carousel-control-left span {
	-webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel .carousel-control span {
	color: #e61c1c;
    background: rgb(255 255 255);
    height: 55px;
    width: 40px;
    font-weight: bold;
    z-index: 121;
    line-height: 52px;
    border: 2px solid #ffffff;
    text-align: center;
    position: absolute;
    border-radius: 50%;
}
/************************/
#about_section {
	background:url(../images/texture_bg.png) repeat;
	padding:80px 0;
	position:relative; 
}
.about_hed h3 {
	font-size:30px;
	text-align:center;
	letter-spacing:1px;
	display:block;
	color:#333333;
	padding-bottom:20px;
}
.about_hed h3 span {
	font-weight:700;
	color:#e61c1c;
}
.about_hed p {
	letter-spacing:0.50px;
	text-align:center;
	padding:0 5%;
	line-height:24px;
	display:block;
}
.about_right {
	padding-top:5%;
}
/************************/
#about_main {	
	background:url(../images/techinova-engineering-background.png) no-repeat;
	/* background-attachment:fixed; */
	background-size:cover;
}
.about_bx_bg {
	padding:80px 40px;
	background:#e61c1c;
	display:block;
}
.about_tl h1 {
	font-size:30px;
	color:#fff;
	letter-spacing:1px;
	padding-bottom:10px;
	margin-bottom:15px;
	font-weight:700;
	position:relative;
}
.about_tl h1:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20%;
	height:2px;
	background:#fff;
	display:block;
}
.about_tl p {
	letter-spacing:0.50px;
	color:#fff;
	font-weight:500;
	line-height:24px;
	display:block;
}
.about_tl a {
	margin-top:20px;
	color:#fff;
	letter-spacing:0.50px;
	font-size:14px;
	font-weight:600;
	display:inline-block;
	padding:5px 20px;
	border:2px solid #fff;
	border-radius:25px;
}
.about_tl a:hover {
	background:#fff;
	color:#e61c1c;
}
/************************/
#product_main {
	background:url(../images/texture_bg.png) repeat;
	padding:80px 0 60px 0;
	position:relative;
}
.product_hed h5 {
	padding:5px 10px;
	background:#0101a2;
	color:#fff;
	margin-bottom:15px;
	display:inline-block;
	font-weight:500;
	letter-spacing:0.50px;
}
.product_hed h2 {
	color:#000;
	font-weight:600;
	font-size:26px;
	letter-spacing:0.50px;
	padding-bottom:15px;
}
.product_hed span {
    letter-spacing: 0.50px;
    line-height: 24px;
	font-weight:500;
    display: block;
}
.product_hed a {
	margin-top:15px;
	font-size:15px;
	font-weight:600;
	letter-spacing:0.50px;
	color:#0101a2;
	display:block;
	text-decoration:underline;
}
.product_hed a:hover {
	color:#000;
}
.product_dtl_bx {
	position:relative;
	transition:transform 1s ease, opacity 0.5s ease 0.25s;
	overflow:hidden;
	display:block;
	padding:10px;
	background:#fff;
	box-shadow:0px 0px 12px rgb(0 0 0 / 15%);
	margin-bottom:20px;
}
.product_bx_dtl {
	padding:30px 30px;
	position:absolute;
	content:'';
	bottom:0;
	left:0;
}
.prod_mg {
	transform: scale(1);
    -webkit-transform: scale(1);
	transition:transform 1s ease, opacity 0.5s ease 0.25s;
}
.prod_mg:before {
	padding:20px;
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	background:rgb(0 0 0 / 10%);
}
.product_dtl_bx:hover .prod_mg {
	transform: scale(1.12);
    -webkit-transform: scale(1.12);
}
.product_dtl_bx:hover .prod_mg:before {
	background:linear-gradient( transparent, rgb(0 2 152 / 40%) 45%);
	height:50%;
	transition:transform 1s ease, opacity 0.5s ease 0.25s;
}
.product_bx_dtl h4 {
	font-size:21px;
	color:#fff;
	letter-spacing:0.50px;
	font-weight:bold;
	padding-bottom:5px;
}
.product_bx_dtl h4 a {
	font-size:21px;
	color:#fff;
	letter-spacing:0.50px;
	font-weight:bold;
	padding-bottom:5px;
}
.product_bx_dtl span {
	letter-spacing: 0.50px;
    line-height: 24px;
    font-weight: 500;
    display: block;
	color:#fff;
}
/************************/
#innotech_section {
	background:url(../images/about-bg1.jpg) no-repeat;
	background-attachment:fixed;
	background-size:cover;
}
.bg_color {
	padding:80px 40px;
	background:#fff;
}
.innotech_dtl h2 {
	font-size:26px;
	color:#0101a2;
	letter-spacing:1px;
	padding-bottom:10px;
	margin-bottom:15px;
	font-weight:700;
	position:relative;
}
.innotech_dtl h2:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20%;
	height:2px;
	background:#0101a2;
	display:block;
}
.innotech_dtl p {
	letter-spacing:0.50px;
	color:#000;
	font-weight:500;
	line-height:24px;
	display:block;
}
.innotech_dtl a {
	margin-top:20px;
	color:#0101a2;
	letter-spacing:0.50px;
	font-size:14px;
	font-weight:600;
	display:inline-block;
	padding:5px 20px;
	border:2px solid #0101a2;
	border-radius:25px;
}
.innotech_dtl a:hover {
	background:#0101a2;
	color:#fff;
}
/************************/
#other_main {
	position:relative;
	padding:80px 0;
	background:#fff;
}
#other_main:before {
	position:absolute;
	content:'';
	left:0;
	right:0%;
	top:0;
	bottom:0;
	background:#bfbfbf;
	opacity:0.1;
	display:block;
}
.catlogue_bx {
	padding:5px;
	background: #fff;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
	position: relative;
}
.download_hed {
	padding:15px 20px;
	position:absolute;
	content:'';
	bottom:0;
	width:100%;
	left:0;
}
.download_hed h6 {
	font-size: 16px;
    color: #ffffff;
    letter-spacing: 0.50px;
    font-weight: 500;
    padding: 10px 15px;
    text-align: center;
    background: #ff0000;
    border: 3px solid #f9f9f9;
}
.catlogue_bx:hover h6 {
	background:#323439;
	color:#fff;
}
.video_bx {
	position:relative;
	padding:5px;
	background: #fff;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
}
.video_bx .video-play-button {
	position:absolute;
	content:'';
	z-index:2;
	top:50%;
	left:50%;
	display:block;
	width:80px;
	height:90px;
	padding:15px;
	border-radius:50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}
.video_bx .video-play-button span {
	position: relative;
    display: block;
    z-index: 3;
    top: 18px;
    left: 20px;
    width: 0;
    height: 0px;
    border-left: 12px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.video_bx .video-play-button:before {
	position:absolute;
	content:'';
	z-index:0;
	left:50%;
	top:50%;
	display:block;
	width:65px;
	height:65px;
	border-radius:50%;
	background:#f00;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.video_bx .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width:65px;
	height:65px;
    border-radius: 50%;
    background: #f00;
    transition: all 200ms;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
.customer_hed {
	margin-left:20px;
}
.customer_hed h3, .download h3 {
	font-size:23px;
	color:#0101a2;
	letter-spacing:1px;
	padding-bottom:10px;
	margin-bottom:20px;
	font-weight:700;
	position:relative;
}
.customer_hed h3:before, .download h3:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20%;
	height:2px;
	background:#0101a2;
	display:block;
}
.testmonial_bx {
	background:#fff;
	border:4px solid rgb(191 191 191 / 20%);
	padding:5px;
}
.text_hed {
	padding:15px 25px;
	display:block;
	background:url(../images/icon-quote.png) right center no-repeat;
	margin-right:15px;
}
.text_hed h5 {
	font-size: 18px;
    color: #000;
	padding-bottom:5px;
	font-weight:bold;	
	letter-spacing:0.50px;
	display:block;
}
.text_hed h5 span {
	font-size:15px;
	display:block;
	font-weight:500;
	letter-spacing:0.25px;
}
.testmonial_para {
	padding:25px;
	border-top:2px solid #f8f8f8;
}
.testmonial_para p {
	font-size: 14px;
    color: #000;
    display: block;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25px;
	padding-bottom:15px;
}
.customer_review .owl-nav .owl-prev, .customer_review .owl-nav .owl-next,
.product_slide .owl-nav .owl-prev, .product_slide .owl-nav .owl-next {
	display:none;
}
/************************/
#hm_footer_sec {
	padding:60px 0 40px 0;
	background:#323439;
}
.foot_line {
	border-right:1px solid #777;
	height:250px;
}
.hm_foot_hed {
	padding-bottom:20px;
}
.hm_foot_hed h5 {
	font-size: 18px;
    color: #fff;
	text-transform:capitalize;
	margin-bottom:10px;
	display:block;
	letter-spacing:0.50px;
	padding-bottom:10px;
	position:relative;
}
.hm_foot_hed h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.50px;
    padding-bottom: 10px;
    position: relative;
}
.hm_foot_hed h5:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20px;
	height:4px;
	background:#e61c1c;
	display:block;
}
.hm_foot_hed h5:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	width:20px;
	height:4px;
	background:#fff;
	display:block;
}
.hm_foot_hed h4:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20px;
	height:4px;
	background:#e61c1c;
	display:block;
}
.hm_foot_hed h4:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	width:20px;
	height:4px;
	background:#fff;
	display:block;
}
.hm_foot_hed ul li {
	padding-bottom:5px;
}
.hm_foot_hed ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.50px;
}
.hm_foot_hed ul li a:hover {
	color:#e61c1c;
}
.foot_wd ul {
	width:48%;
	float:left;
	margin-right:5px;
}
.hm_foot_hed p {
    color: #fff;
    line-height: 22px;
    letter-spacing: 0.25px;
    padding-bottom: 5px;
}
.hm_foot_hed p span {
	color:#fff;
	font-size:15px;
	font-weight:bold;
}
.hm_foot_hed p a {
	color:#fff;
}
.footer_btn {
	padding:20px 0;
	background:#fff;
}
.foot_dp_txt p {
	color:#2d2d2d;
	text-align:center;
	font-size:13px;
	letter-spacing:1px;
}
.foot_dp_txt p a {
	color:#fc0606;
	font-weight:bold;
}
.foot_dp_txt p a:hover {
	color:#2ba63a;
}
.foot_dp_txt {
	padding-top:30px;
}
.foot_dp_txt p {
    color: #fff;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
}
.foot_dp_txt p a {
    color: #fff;
    font-weight: 500;
}
/************************/
.inner_banner_sec {
    position: relative;
	background:url(../images/about-bg.webp) no-repeat;
	background-attachment: fixed;
    background-size: cover;
	min-height:300px;
}
.inner_banner_sec h1 {
	position: absolute;
    content: '';
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 1px;
}
.banner_bg_clr {
	padding:15px 0;
	background:#f8f8f8;
	float:right;
	z-index:9;
	position:relative;
}
.banner_bg_clr ul li {
	display:inline-block;
	padding:0 5px;
}
.banner_bg_clr ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.banner_bg_clr ul li a:hover {
	color:#0101a2;
}
.banner_bg_clr ul li span {
	color:#0101a2;
    font-weight: 500;
}
.banner_bg_clr ul li a i {
	margin-left:5px;
	color:#0101a2;
}
/************************/
#product_section {
	background:url(../images/texture_bg.png) repeat;
	padding:100px 0 50px 0;
	position:relative; 
}
.about_hed span {
	letter-spacing:0.50px;
	text-align:center;
	font-size:15px;
	font-weight:600;
	padding:0 5%;
	line-height:24px;
	display:block;
}
#inner_product_main {
	padding:45px 0;
	/* background: #fdfdfd; */
	background: #f1f1f1;
}
#inner_product_main_two {
	padding:60px 0;
}
.inn_product_dtl h2 {
    padding: 5px 15px;
    background: #0101a2;
    color: #fff;
    font-size: 23px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.50px;
}
.inn_product_dtl h3 {
	padding: 5px 15px;
    background: #0101a2;
    color: #fff;
	font-size: 23px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.50px;
}

.inn_product_dtl p a{
	color:#0055B3;
	}
	
.inn_product_dtl span {
	font-size: 16px;
    color: #e61c1c;
    font-weight: 600;
    display: block;
    padding-bottom: 10px;
    letter-spacing: 0.50px;
}
.inn_product_dtl p, .inn_prd_rht_hed p {
	letter-spacing: 0.50px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
	padding-bottom:10px;
}
.inn_product_dtl {
	padding-bottom:20px;
}
.inn_prod_bx {
    padding: 10px;
    background: #fdfdfd;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    margin-bottom: 30px;
}
.inn_prd_rht_hed {
	padding-bottom:15px;
}
.inn_prd_rht_hed h5 {
    font-size:17px;
    color:#e61c1c;
    font-weight:600;
    display:block;
    padding-bottom:10px;
    letter-spacing:0.50px;
}
.inn_prd_rht_hed ul li span {
    font-weight:500;
    text-transform:capitalize;
    letter-spacing: 0.50px;
    color:#000;
    display:block;
    font-size:14px;
	padding-bottom:6px;
}
.inn_prd_rht_hed ul li span i {
	font-size:15px;
	margin-right:5px;
	color:#e61c1c;
}
.inn_prod_table {
	background:#fff;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 10%);
	padding:15px;
}
.table-bordered {
	border:0px;
}
.inn_prod_table th {
	border:0px;
	font-size: 15px;
	font-weight:600;
	padding:10px 8px;
	letter-spacing:0.50px;
	border-bottom:2px solid #f4f4f4;
	color:#e61c1c;
	text-align:center;
}
.inn_prod_table td {
	border:0px;
	border-right:2px solid #f4f4f4;
    color: #000;
	letter-spacing:0.50px;
	font-weight:500;
	font-size:14px;
	padding:10px 8px;
	text-align:center;
}
.inn_prod_table td:last-child {
	border-right:0px;
}
.inn_prod_table tr:nth-child(even) {
  background: #f4f4f4;
}
.inn_prod_table tr:nth-child(odd) {
  background: #FFF;
}
.inn_product_dtl0 h3 {
	padding: 5px 15px;
    background: #0101a2;
    color: #fff;
	font-size: 23px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.50px;
}
.inn_product_dtl0 {
	padding-bottom:20px;
	text-align:center;
}
/************************/
#carousel .inn_prod_bx0 {
	right:10%;
}
/************************/
.traning_form .form-group input, .traning_form .form-group select {
    display: block;
    width: 100%;
    color: #3e454c;
    padding: 10px 28px;
    font-size: 16px;
	font-weight:500;
    border-radius: 2px;
    background: #fff;
    border-color: #ebebeb;
	border-width: 1px 1px 4px 1px;
	border-style:solid;
}
.traning_form .form-group input::placeholder {
	color: #464646;
	opacity: 1; 
	font-size:14px;
}
.traning_form .form-group textarea::placeholder {
	color: #464646;
	opacity: 1; 
	font-size:14px;
}
.traning_form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 28px;
    color: #ee2324;
	font-weight:500;
    height: 100px;
    font-size: 14px;
    border-radius: 2px;
    border-color: #ebebeb;
	border-width: 1px 1px 4px 1px;
	border-style:solid;
    background: #fff;
}
.butn-bg {
    font-size: 16px;
    padding: 12px 30px;
    background: #323439;
    color: #fff;
	margin-top:15px;
	cursor:pointer;
	font-weight:bold;
	letter-spacing:0.50px;
    display: block;
	width:100%;
	border:2px solid #fff;
}
.butn-bg:hover {
	border:2px solid #fff;
	color:#fff;
	background:#e61c1c;
}
/************************/
.carrier_bx {
	padding:40px 40px;
	background:#f9f9f9;
	box-shadow:0px 0px 4px rgb(0 0 0 / 10%);
	border-radius:10px;
	min-height:570px;
}
.carrier_dtl p {
	letter-spacing: 0.50px;
    line-height: 22px;
	font-size:14px;
	font-weight:500;
    display: block;
	padding-bottom:10px;
}
.carrier_dtl span {
	font-weight: 700;
    color: #e61c1c;
}
.carrier_form h4 {
	font-size: 21px;
    color: #e61c1c;
    letter-spacing: 0.50px;
    font-weight: 600;
	padding-bottom:20px;
}
.carrier_form .form-group {
	margin-bottom:10px;
}
.carrier_form .form-group input {
    display: block;
    width: 100%;
    color: #000;
    padding: 10px 15px;
    font-size: 14px;
	font-weight:500;
    border-radius: 2px;
    background: #fff;
    border-color: #ebebeb;
	border-width: 1px 1px 4px 1px;
	border-style:solid;
}
.carrier_form .form-group input::placeholder {
	color: #000;
	opacity: 1; 
	font-size:14px;
}
.carrier_form .form-group textarea::placeholder {
	color: #000;
	opacity: 1; 
	font-size:14px;
}
.carrier_form .form-group textarea {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #000;
	font-weight:500;
    height: 100px;
    font-size: 14px;
    border-radius: 2px;
    border-color: #ebebeb;
	border-width: 1px 1px 4px 1px;
	border-style:solid;
    background: #fff;
}
.butn-bg0 {
    font-size: 13px;
    padding: 10px 30px;
    background: #323439;
    color: #fff;
	margin-top:15px;
	cursor:pointer;
	border-radius:5px;
	font-weight:600;
	letter-spacing:0.50px;
    display: block;
	border:2px solid #fff;
}
.butn-bg0:hover {
	border:2px solid #fff;
	color:#fff;
	background:#e61c1c;
}
/************************/
#about_inner_top {
	padding:80px 0 150px 0;
	background: #0101a2;
}
.about_inn_hed h2 {
	font-size: 26px;
    color: #fff;
    letter-spacing: 1px;
    padding-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.about_inn_hed p {
    letter-spacing: 0.50px;
    color: #fff;
    font-weight: 500;
    line-height: 24px;
	text-align:justify;
    display: block;
	padding-right:30px;
	padding-bottom:10px;
}
#about_inn_middle {
	padding:50px 0 50px 0;
	position:relative;
}
.about_inn_mg {
	/* margin-top:-130px; */
}
.about_comp_hed {
	/* padding-top:60px; */
	padding-right:30px;
}
.about_comp_hed h2 {
	font-size: 26px;
    color: #0101a2;
    letter-spacing: 1px;
    padding-bottom: 15px;
    font-weight: 700;
}
.about_comp_hed p {
    letter-spacing: 0.50px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
	font-size:14px;
	text-align:justify;
	padding-bottom:10px;
}
.about_para p {
	letter-spacing: 0.50px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
	font-size:14px;
	padding-bottom:10px;
}
#clinet_main {
	padding:45px 0;
}
.client_hed span {
	font-size:14px;
	text-align:center;
	display:block;
	color:#000;
	font-weight:500;
}
.client_hed h2 {
	font-size:26px;
	text-align:center;
	color:#0101a2;
	letter-spacing:1px;
	display:block;
	font-weight:bold;
}
.client_hed {
	padding-bottom:30px;
}
.client_bx {
	position:relative;
	border-bottom:3px solid #0101a2;
	padding:10px;
	margin-bottom:20px;
	-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    -o-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.client_bx:before {
	position: absolute;
    left: 50%;
    bottom: -3px;
    height: 3px;
    width: 0;
    content: '';
    background-color: #e61c1c;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.client_bx:hover:before {
    width: 100%;
    left: 0;
}
/************************/
#mission_vission_top {
	padding:60px 0;
}
.histor_hed h2 {
	font-size: 26px;
    color: #0101a2;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-weight: 700;
    position: relative;
}
.histor_hed h3 {
    font-size: 23px;
    color: #0101a2;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-weight: 700;
}
.client_hed h4 {
    font-size: 21px;
    color: #0101a2;
    letter-spacing: 1px;
    padding-bottom: 10px;
	text-align:center;
    font-weight: 700;
}
.histor_hed p {
    letter-spacing: 0.50px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
}
.histor_hed h4 {
	font-size:21px;
	color:#0101a2;
	letter-spacing:1px;
	padding-bottom:5px;
	display:block;
	font-weight:bold;
}
.histor_hed {
	padding-bottom:20px;
}
.histor_hed p {
    letter-spacing: 0.50px;
    color: #000;
	font-size:14px;
    font-weight: 500;
	text-align:justify;
    line-height: 22px;
    display: block;
}
.histor_hed span {
	font-size: 17px;
    color: #e61c1c;
    font-weight: 600;
    display: block;
    letter-spacing: 0.50px;
}
/************************/
#contact_main {
	padding: 80px 0 160px 0;
}
.contact_number_bx {
	background: #fff;
    padding: 20px 15px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 17px -6px rgb(0 0 0 / 14%);
}
.contact_no span, .conatct_email span {
	font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.50px;
    display: inline-block;
    color: #0000a5;
	float:left;
}
.conatct_email ul {
	float:right;
}
.contact_no ul li, .conatct_email ul li {
	display:inline-block;
    padding: 0 15px;
	border-right:2px solid #f8f8f8;
}
.contact_no ul li:last-child, .conatct_email ul li:last-child {
	border-right:0px;
}
.contact_no ul li a, .conatct_email ul li a {
	color: #000;
    font-weight: 500;
    letter-spacing: 0.50px;
    font-size: 15px;
}
.contact_no ul li a:hover, .conatct_email ul li a:hover {
	color:#e61c1c;
}
.conatct_email {
	float:right;
}
.contact_inner map {
	position:relative;
}
.contact_form {
	position:absolute;
	content:'';
	background:#fff;
	padding: 30px 30px 40px;
	margin-top:-130px;
	box-shadow: 0px 4px 10px 0 rgb(0 0 0 / 14%);
}
.map iframe {
	height:500px;
}
.carrier_form span {
	font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.50px;
    display: inline-block;
    color: #0000a5;
}
.conatct_bx {
	box-shadow: 0px 4px 17px -6px rgb(0 0 0 / 14%);
    padding: 40px 25px;
    border: 4px solid #ffffff;
    background: #f7f7f7;
    min-height: 250px;
    margin-bottom: 30px;
}
.conatct_bx_dtl h6 {
	font-weight:600;
	padding-bottom:10px;
	color:#000;
	font-size:16px;
	letter-spacing:0.25px;
}
.conatct_bx_dtl p {
	font-size: 15px;
    color: #000;
    font-weight: 500;
    display: block;
	text-transform:capitalize;
    letter-spacing: 0.25px;
    padding-bottom: 10px;
}
.conatct_bx_dtl span a {
	color:#000;
	font-weight:500;
	padding-bottom:0px;
	letter-spacing:0.25px;
	display:block;
	line-height:26px;
}
/************************/
.download_dtl {
	padding: 10px;
    background: #fdfdfd;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    margin-bottom: 30px;
}
.report-mg {
	background:#f2f4f6;
	border-radius:5px;
	padding:10px;
	margin-bottom:15px;
}
.report-mg img {
	margin:0 auto;
	display:table;
}
.download_dtl span {
    letter-spacing: 0.50px;
    color: #e63a22;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    display: block;
    text-transform: uppercase;
}
.download_dtl:hover span {
	color:#464646;
}
/************************/
#facilities_main {
	padding: 80px 0 60px 0;
}
.facilities_dtl {
	padding-top:30px;
}
.facilities_dtl p {
	letter-spacing: 0.50px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
    font-size: 14px;
    text-align: justify;
    padding-bottom: 10px;
}
.facilities_mg img {
	margin:0 auto;
	display:table;
}
/************************/
.inn_prod_bx_hed h5 a {	
	font-size: 16px;    
	color: #0101a2;    
	padding: 10px 0 5px 0;    
	font-weight: 600;	
	text-align:center;    
	letter-spacing: 0.50px;  
	display: block;
}
.inn_prod_bx:hover h5 {
	color:#000;
}
/************************/
.extra-padd {
	padding-top:30px;
}

.inn_prd_rht_hed h3 {
	font-size: 17px;
    color: #e61c1c;
    font-weight: 600;
    display: block;
    letter-spacing: 0.50px;
	padding-bottom:15px;
}
.innotech_inner_banner_sec {
    position: relative;
    background: url(../images/innotech-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 300px;
}
.innotech_inner_banner_sec h1 {
	position: absolute;
    content: '';
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 1px;
}
.modal-header {
	padding:0px;
	border-bottom:0px;
}
.modal-header h3 {
	font-size: 18px;
	color: #ee3135;
	text-shadow: 0px 0px 0px rgb(2 2 2 / 23%);
	font-weight:500;
	display: block;
    margin-bottom: 15px;
}
.modal-body {
	padding: 18px;
    border-radius: 0px;
    border: 1px solid #f7f7f7;
    box-shadow: 1px 1px 3px 0px rgb(255 255 255 / 16%);
    background-color: #f7f7f7;
}
.modal-header .close {
	position: absolute;
    right: 15px;
    bottom: auto;
    top: 0px;
    padding: 8px;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
	opacity:1;
    border: 1px none #ffffff;
    border-radius: 0px;
    box-shadow: 1px 1px 3px 0px rgb(2 2 2 / 23%);
    text-shadow: 0px 0px 0px rgb(0 0 0 / 23%);
    background-color: #ee3135;
}
.request_form {
	padding: 30px 30px;
	background:#fff;
}
.modal-dialog {
	max-width:600px;
}
.request_form .form-group input {
    position: relative;
    display: block;
    width: 100%;
    color: #000;
    padding: 10px 15px;
    font-size: 16px;
    background: #f7f7f7;
    border: 0px;
}
.request_form .form-group input::placeholder {
	color: #000;
	opacity: 1; 
	font-size:14px;
}
.submit_btn {
	padding:10px 25px 10px 25px;
	color: #fff;
    font-size: 16px;
	display:inline-block;
    font-weight: 500;
	cursor:pointer;
	background:#323439;
    border:2px solid #f7f7f7;
	position:relative;
}
.submit_btn:hover {
    border: 2px solid transparent;
	background-color: #e63a22;
}




.social_link h6 {
	font-size: 17px;
    color: #fff;
	text-transform:uppercase;
	margin-bottom:10px;
	display:block;
	letter-spacing:0.50px;
	padding-bottom:10px;
	position:relative;
}
.social_link h6:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20px;
	height:4px;
	background:#b91818;
	display:block;
}
.social_link h6:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	width:20px;
	height:4px;
	background:#fff;
	display:block;
}
.social_link ul li {
	float:left;
	padding-right:10px;
}
.social_link ul li a i {
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:15px;
	display:block;
	color:#fff;
}
.social_link ul li a i:hover {
	background:#323232;
	border:2px solid #fff;
}
.social_link ul li a .fa-facebook-f {
	background:#3b5998;
	color:#fff;
}
.social_link ul li a .fa-youtube {
	background:#d42428;
	color:#fff;
}
.social_link ul li a .fa-linkedin-in {
	background:#007ab9;
	color:#fff;
}
.social_link ul li a .fa-twitter {
	background:#55acee;
	color:#fff;
}
/********************/

.modal-dialog {
    margin: 10% auto 0;
}
