@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

* {
	margin:0px;
	padding:0px;
	outline:none;
}
img {
	border:none;
}
ul {
	list-style:none;
}
a, a:hover {
	text-decoration:none;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4,h5,h6,p,b,strong,span,ul,li {
	margin:0px;
	padding:0px;
}
body {
	box-sizing:border-box;
	color:#777777;
	font-size:14px;
	/* background:url(../images/background.png); */
	background-color:#fff;
	font-family: 'Montserrat', sans-serif;
	overflow-x:hidden;
}
html {
  scroll-behavior: smooth;
}
/*************************************/
.fixed-top {
	position:sticky;
	display:block;
	background:#fff;
}
.header_menu {
	padding: 10px 0 10px 0;
    display: flex;
}
#header {
	box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
}
#header .logo img {
	width:25%;
	height:auto;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	float:left;
	margin-top: -33px;
}
.header-scrolled .logo img {
	width:18% !important;
	height:auto;
	display:block;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	margin-top:0px !important;
}
.header-scrolled .main-nav > ul {
	margin-top:8px;
}
.main-nav {
	float:right;
}
.main-nav > ul {
	margin-top:0px;
	width: 100%;
    display: flex;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	display: block;
	position: relative;
	color: #000;
	padding: 10px 10px;
	font-size: 16px;
	letter-spacing:0.50px;
	font-family: 'Rubik', sans-serif;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #e31e24;
	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;
	padding: 10px 0;
	background: #fff;
	/* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
	/* transition: ease all 0.3s; */
}
.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 a {
	padding: 7px 20px;
	font-size: 15px;
	letter-spacing:0.50px;
	color: #000;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #e31e24;
}
.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% - 30px); */
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.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: rgba(19, 39, 57, 0.8);
	transition: 0.4s ease;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #74b5fc;
	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: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004289;
}
.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;
}
/*************************************/
.header-top {
	border-top:2px solid #05648f;
	padding:10px 0 0 0;
	background:#fff;
}
.top_menu {
	display: flex;
    float: right;
}
.language {
	display:inline-block;
	padding-right:10px;
}
.goog-te-gadget {
	font-size:0px !important;
	display:block;
}
.goog-logo-link, .goog-logo-link:link, .goog-logo-link:visited, .goog-logo-link:hover, .goog-logo-link:active {
	display:none;
}
.goog-te-gadget .goog-te-combo {
	margin:0px !important;
	padding:2px 10px;
	font-size:13px;
	font-family: 'Montserrat', sans-serif;
	border-radius:20px;
}
.social-icon ul {
    float:right;
}
.social-icon ul li {
    float: left;
    padding: 0 5px;
}
.social-icon ul li a i {
    font-size: 16px;
	color:#66707f;
	line-height:24px;
}
.social-icon .icon1:hover i {
    color: #4b69b1;
}
.social-icon .icon2:hover i {
    color: #37b1e2;
}
.social-icon .icon3:hover i {
    color: #e83f3a;
}
.social-icon .icon5:hover i {
    color: #0078b5;
}
.social-icon .icon4:hover i {
	color: #dd2d4c; 
}
.social-icon ul li a:hover i {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    border-radius: 5px;
}
.search_icon i {
	font-size:14px;
	padding:15px;
	color:#66707f;
	cursor:pointer;
}
.search-box {
   background: #edf4ff;
   position: absolute;
   top: 54px;
   right: 0%;
   width: 350px;
   height: 60px;
   line-height: 30px;
   border-top:4px solid #03638e;
   display: none;
   margin-top:10px;
   z-index:99;
}
.search-box:before {
   content: "";
   position: absolute;
   top: -32px;
   right: 13px;
   border-left: 12px solid transparent;
   border-right: 12px solid transparent;
   border-top: 14px solid transparent;
   border-bottom: 14px solid #03638e;
}
.search-box input[type="text"] {
	width: 70%;
	padding: 3px 10px;
	margin-left: 13px;
	border: 1px solid #03638e;
	outline: none;
	float:left;
	border-radius:0px;
	margin-top: 8px;
}
.search-box .button {
   width: 80px;
   padding: 3px 0;
   background: #03638e;
   color: #fff;
   margin-left:0;
   margin-top: 8px;
   border: 1px solid #03638e;
   outline: none;
   cursor: pointer;
   display:inline-block
}
/***************************/
.slider {
	border-bottom: 6px solid #03638e;
}
.carousel-item img {
	width:100%;
	height:auto;
}
.carousel-indicators {
	bottom: 0;
}
.carousel-control.right, .carousel-control.left {
	background-image: none;
}
.carousel-item {
	min-height: 350px;
	height: 100%;
	width:100%;
}
.carousel-caption h3, .carousel .icon-container, .carousel-caption button {
	background-color: #09c;
}
.carousel-caption h3 {
	padding: .5em;
}
.carousel .icon-container {
	display: inline-block;
	font-size: 25px;
	line-height: 25px;
	padding: 1em;
	text-align: center;
	border-radius: 50%;
}
.carousel-caption button {
	border-color: #00bfff;
	margin-top: 1em;
}
.carousel-caption h3:first-child {
	animation-delay: 1s;
}
.carousel-caption h3:nth-child(2) {
	animation-delay: 2s;
}
.carousel-caption button {
	animation-delay: 3s;
}
.carousel {
	position: relative;
}
.carousel-control-prev {
	position: absolute;
    top: 45%;
    left: 2%;
    background: #000;
    font-size: 30px;
    display: block;
    line-height: 50px;
    width: 50px;
	opacity:0.5;
    height: 50px;
    border-radius: 50px;
}
.carousel-control-next {
	position: absolute;
    top: 45%;
	right:2%;
    color: #e31e24;
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 30px;
    display: block;
	opacity:0.5;
    line-height: 50px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	width:16px;
}
/***************************/
#hm_abt_tp_sec {
	padding:50px 0;
}
.hm_abt_tp_bx h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #066490;
	font-weight:bold;
	text-transform:capitalize;
    position: relative;
}
.hm_abt_tp_bx span {
	font-size: 17px;
    line-height: 30px;
    color: #4c4c4c;
	display:block;
	text-transform:capitalize;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.hm_abt_tp_bx span i {
	color: #e21f25;
}
.hm_abt_tp_bx span b {
	color: #e21f25;
}
.hm_abt_tp_bx p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
	letter-spacing:1px;
    padding-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
}
/***************************/
#middle_dtl {
	position:relative;
	display: flow-root;
}
.hm_abt_rht {
	width: 75%;
    height: 660px;
    display: block;
    position: relative;
    right: 27%;
    float: right;
    background-size: cover;
    background-image: url(../images/about-img.jpg);
}
.hm_abt_bx .parent {
    width: 100%;
    height: 100%;
    float: left;
}
.hm_abt_bx {
	position: relative;
    left: 65%;
    width: 25%;
    float: left;
    display: block;
}
.hm_abt_dtl {
	width: 100%;
    max-width: 679px;
    background: #FFF;
    box-shadow: 0px 10px 30px 0px rgba(77, 82, 86, 0.15);
    margin-top: 25%;
    padding: 40px 7%;
    display: block;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}
.hm_abt_dtl span {
    position: relative;
    color: #e21f25;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing:2px;
	display:block;
}
.hm_abt_dtl h1 {
	position: relative;
    color: #04638f;
    font-weight: 700;
    line-height: 26px;
    font-size: 26px;
    display: inline-block;
    text-transform: capitalize;
	padding-bottom:20px;
}
.hm_abt_dtl h1:before {
    position: absolute;
    content: '';
    left: -65px;
    top: 15px;
    height: 3px;
    width: 50px;
    background-color: #e21f25;
}
.hm_abt_dtl p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
	letter-spacing:1px;
    padding-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
}
.hm-abt-anch {
	display:block;
	color:#000;
	font-size:16px;
	z-index: 1;
	position:relative;
	font-family: 'Montserrat', sans-serif;
	margin:12px 0;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hm-abt-anch i {
	font-size:18px;
	margin-left:3px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hm-abt-anch:hover i {
	margin-left:10px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/***************************/
.top-contact a {
	color:#fff;
}
.top-contact {
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #f1f1f1;
    cursor: pointer;
    width: 200px;
    height: 28px;
    overflow: hidden;
    background: #026394;
    padding: 2px 0px 2px 0px;
    position: fixed;
    top: 45%;
    right: -85px;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 999;
    font-size: 16px;
}
/**************************/
#hm_product_section {
	padding:60px 0;
	position:relative;
	background:#05638e;
}
.dsk_product_section {
	display:block;
}
.dsk_prd_img img {
	margin:0 auto;
	display:table;
}
.product_section {
	display:none!important;
}
.dsk_text_dtl {
	padding:20px 0;
	text-align:center;
}
.dsk_text_dtl h5 {
	font-size: 20px;
    color: #fff;
	/* font-family: 'Rubik', sans-serif; */
	text-transform:uppercase;
	letter-spacing:1px;
	/* font-weight:bold; */
    padding-bottom: 10px;
}
.dsk_text_dtl p {
	font-size: 14px;
    line-height: 24px;
    color: #fff;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.dsk_text_dtl a {
	display: table;
	margin:0 auto;
	text-align:center;
    color: #fff;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.dsk_text_dtl a i {
	font-size:18px;
	margin-left:3px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.dsk_text_dtl a:hover i {
	margin-left:10px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.dsk_text_dtl a:hover {
	color:#e32127;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
	display:block !important;
}
.text_dtl h2 {
	text-align: center;
    padding-bottom: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.text_bx_tp {
	margin-bottom: 10px;
    border: 2px solid #f7f7f7;
	background:#fff;
	position:relative;
}
.text_bx_tp .text_bx_mg img {
	position:relative;
	z-index:3;
	margin:0 auto;
	display:table;
	margin-bottom:30px;
}
.text_bx_tp .text_bx_dtl {
	position:relative;
	z-index:333;
    padding:30px 20px 30px 20px;
}
.text_bx_dtl h5 {
	font-size: 20px;
    text-align: center;
    color: #e32127;
    padding-bottom: 10px;
}
.text_bx_dtl p {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-bottom: 10px;
	text-align:center;
    font-family: 'Montserrat', sans-serif;
}
.text_bx_dtl a {
	display: table;
	margin:0 auto;
	text-align:center;
    color: #04638f;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.text_bx_dtl a i {
	font-size:18px;
	margin-left:3px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.text_bx_dtl a:hover i {
	margin-left:10px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.text_bx_dtl a:hover {
	color:#e32127;
}
.carousel-wrap {
	position: relative;
}
.carousel-wrap .owl-next span {
	position: absolute;
    top: 40%;
    right: -15px;
    color: #fff;
    background: #0d3c70;
    background: #56bfea;
    width: 40px;
    height: 60px;
    font-size: 40px;
    line-height: 55px;
}
.carousel-wrap .owl-prev span {
	position: absolute;
    top: 40%;
    left: -15px;
    color: #fff;
    background: #56bfea;
    width: 40px;
    height: 60px;
    font-size: 40px;
    line-height: 55px;
}
/**************************/
#hm_quality {
	padding:40px 0 60px 0;
	position:relative; 
}
#hm_quality .hm_sec_bg {
    position: absolute;
    content: '';
    left: 0;
    top: -20px;
    width: 700px;
    z-index: -1;
    height: 300px;
    background: url(../images/pattern.png) no-repeat;
}
.iso_logo {
	border: 2px solid #f7f7f7;
    border-radius: 5px;
    padding: 10px 0;
}
/**************************/
#hm_section {
	padding:80px 0;
	position:relative;
}
#hm_section .hm_sec_bg {
    position: absolute;
    content: '';
    right: 0;
    top: -20px;
    width: 700px;
    z-index: -1;
    height: 500px;
    background: url(../images/pattern.png) no-repeat;
}
.hm_sec_hed span {
	position: relative;
    color: #e21f25;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    display: block;
}
.hm_sec_hed h4 {
    position: relative;
    color: #04638f;
    font-weight: 700;
    line-height: 26px;
    font-size: 24px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 20px;
}
.hm_sec_hed h4:before {
    position: absolute;
    content: '';
    left: -65px;
    top: 15px;
    height: 3px;
    width: 50px;
    background-color: #e21f25;
}
.hm_sec_para {
    background: #FFF;
    box-shadow: 0px 10px 30px 0px rgba(77, 82, 86, 0.15);
    padding: 40px 7%;
    display: block;
    position: relative;
    z-index: 3;
    margin-right: -60px;
}
.hm_sec_para p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
/**********************/
#hm_footer {
	padding:60px 0 40px 0;
	/*background:#525252;*/
	background:#aad3fe;
}
.hm_foot_logo img {
	/* margin:0 auto; */
	/* display:table; */
	margin-bottom:15px;
}
.hm_foot_nav ul li {
	display:inline-block;
	padding:0 15px;
	border-right:2px solid #4c4c4c;
	margin-bottom:10px;
}
.hm_foot_nav ul li:last-child {
	border-right:0px;
}
.hm_foot_nav ul li a {
	color:#4c4c4c;
	font-weight:bold;
	letter-spacing:1px;
}
.hm_foot_nav ul li a:hover {
	color:#e31d24;
}
.hm_foot_nav p {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
	font-weight:bold;
    letter-spacing: 1px;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.hm_foot_nav ul.hm_foot_call li {
	padding:0 12px;
}
.hm_foot_nav ul.hm_foot_call li a i {
	margin-right:5px;
}
.footer-social-icon ul {
	margin-top:15px;
}
.footer-social-icon ul li {
	display:inline-block;
	padding:0 8px;
}
.footer-social-icon ul li a i {
	font-size:15px;
	width:30px;
	height:30px;
	line-height:30px;
	background:#4c4c4c;
	text-align:center;
	color:#fff;
}
.footer-social-icon .icon1:hover i {
    color: #fff;
	background: #4b69b1;
}
.footer-social-icon .icon2:hover i {
    color: #fff;
	background: #37b1e2;
}
.footer-social-icon .icon3:hover i {
    color: #fff;
	background: #e83f3a;
}
.footer-social-icon .icon5:hover i {
    color: #fff;
	background: #0078b5;
}
.footer-social-icon .icon4:hover i {
	color: #fff; 
	background: #dd2d4c;
}
.footer-social-icon ul li a:hover i {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    border-radius: 5px;
}
.tweets h4 {
    position: relative;
    color: #000;
    font-size: 24px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.timeline-Widget {
    max-width: 1200px;
    background-color: #1d2b37;
    border-radius: 5px;
}
.footer-bottom {
    padding: 15px 0 0 0;
	border-top:1px solid #4c4c4c;
    text-align: center;
	margin-top:20px;
}
.foot-bot-head h5 {
    font-size: 14px;
    color: #4c4c4c;
    font-family: 'Montserrat', sans-serif;
}
.foot-bot-head h5 a {
    color: #ed3237;
}
/************Inner-Page*******************/
#inner_banner img {
	width:100%;
}
.inn_banner_sec {
	padding:15px 0;
	background: #f9f9f9;
}
.inn_banner_lst ul li {
	float:left;
	display:inline-block;
	padding:0 10px;
}
.inn_banner_lst ul li:first-child {
	padding-left:0px;
}
.inn_banner_lst ul li > a:after {
	content: "\f105";
    font-family: FontAwesome;
    padding-left: 10px;
	font-weight:bold;
}
.inn_banner_lst ul li a {
	font-size:15px;
	color:#05638e;
	position:relative;
	text-decoration:none;
}
.inn_banner_lst ul li a:hover {
	color:#df2027;
}
.inn_banner_lst ul li span {
	color:#df2027;
	display:block;
	font-size:15px;
}
/************************************/
#inner_product_sec {
	padding: 60px 0;
    background: #f1f5fa;
}
#inner_product {
	padding: 60px 0;
}
.inn_prd_lft {
	position: sticky;
    margin-bottom: 20px;
    background: #FFF;
    top: 90px;
}
.inn_prd_lft_hed {
	margin-bottom:20px;
	position:relative;
	padding:15px 15px 15px 24px;
	border-left:5px solid #05638f;
	-webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}
.inn_prd_lft_hed h5 {
	font-size:20px;
	color:#e21f25;
	font-weight:bold;
	letter-spacing:1px;
}
.prd_lft_lst ul li {
	border-bottom:1px solid #dddddd;
}
.prd_lft_lst ul li a {
	padding:15px 24px;
	display:block;
	color:#05638e;
	font-size:14px;
	transition:all 0.3s ease;
	text-decoration:none;
	letter-spacing:0.25px;
}
.prd_lft_lst ul li a i {
	margin-right:3px;
}
.prd_lft_lst ul li a:hover {
	color:#e21f25;
}
.prd_lft_lst ul li a:hover i {
	margin-right:6px;
}
.inn_prd_cnt_hed {
	padding-bottom:30px;
}
.inn_prd_cnt_hed h1 {
    position: relative;
    color: #04638f;
    font-weight: 600;
    line-height: 26px;
	letter-spacing:1px;
    font-size: 30px;
    text-transform: capitalize;
    padding: 6px 0 6px 6px;
	border-left:3px solid #05638e;
}
.animate-border {
	position: relative;
	display: none;
	width: 115px;
	height: 3px;
	background: #e21f25; 
}
.animate-border:after {
	position: absolute;
	content: "";
	width: 35px;
	height: 3px;
	left: 0;
	bottom: 0;
	display:none;
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
	-webkit-animation: animborder 2s linear infinite;
	animation: animborder 2s linear infinite; 
}

@-webkit-keyframes animborder {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px); 
	}
	100% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px); 
	} 
}

@keyframes animborder {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	100% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	} 
}
.inn_prd_bx img {
	margin-bottom:20px;
	box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
	background-color:#fff;
}
.inn_prd_bx0 .carousel-item img {
	background-color:#fff;
}
.inn_prd_bx a {
	float:right;
	padding:10px 25px;
	background:#05638e;
	color:#fff;
	font-size:15px;
	letter-spacing:0.50px;
	position: relative;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	margin: 15px  0;
}
.inn_prd_bx a i {
	margin-left:5px;
}
.inn_prd_bx a:hover {
	background:#2eb0e6;
	color:#fff;
	box-shadow: 5px 5px 0px -2px #05638e;
}
.inn_prd_bx a:hover i {
	color:#fff;
}
.inn_prd_dlt {
	padding-bottom:30px;
}
.inn_prd_dlt h6 {
	font-size:16px;
	color:#000;
	font-weight:bold;
	letter-spacing:1px;
	padding-bottom:5px;
}
.inn_prd_dlt h4 {
    color: #fffdfd;	
    font-size: 30px;
    display: inline-block;
    /* text-transform: capitalize; */
    padding: 5px 30px 5px 31px;
    background: #525252;
    margin-bottom: 30px;
    border-radius: 20px;
}
.inn_prd_dlt p {
    font-size: 15px;
    line-height: 26px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.inn_prd_dlt_btm {
	/* padding:60px 0 0 30px; */
}
.inn_prd_dlt_btm p {
    font-size: 15px;
    color: #4c4c4c;
	padding-bottom:10px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.inn_prd_dlt_btm h5 {
    font-size: 20px;
    color: #000;
	font-weight:bold;
	text-transform:uppercase;
    padding-bottom: 15px;
	letter-spacing:1px;
}
.inn_prd_dlt span {
    font-size: 15px;
    line-height: 30px;
	font-weight:bold;
    color: #161616;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.table thead tr th {
    background: #05638e;
    color: #fff;
    border: 1px solid #e8e8e8;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.5px;
    vertical-align: middle;
    padding: 10px 10px;
}
.table tbody tr td {
    font-size: 13px;
    color: #4c4c4c;
    vertical-align: middle;
    border: 1px solid #e8e8e8;
    letter-spacing: 0.50px;
}
.border_btm {
	border-bottom:2px dashed #a0a2ac;
	margin:30px 0 30px 0; 
}
.inn_prd_para p {
	font-size: 13px;
    line-height: 22px;
    color: #4c4c4c;
	text-align:center;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
#inn_product_sec0 {
	background:#f8faff;
	padding:60px 0;
	margin-bottom:20px;
}
.inn_prd_dtl0 h2 {
    text-align: center;
    padding-bottom: 30px;
    color: #05638e;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.product a {
	text-decoration:none;
}
.text_bx_tp0 .text_bx_mg0 img {
	position:relative;
	z-index:1;
	border: 2px solid #f5f5f5;
	margin:0 auto;
	display:table;
}
.text_bx_tp0 .text_bx_dtl0 {
	position:relative;
	z-index:1;
}
.text_bx_dtl0 h6 {
	font-size: 15px;
    text-align: center;
    color: #fff;
	background: #2eb0e6;
    padding: 10px;
}
.text_bx_tp0:hover .text_bx_dtl0 h6 {
	color: #fff;
	background: #026394;
}
.pd0 {
	margin-bottom:20px;
}
/**********************/
.inn_prd_bx0 {
	margin-bottom:20px;
	box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}
.carousel-inner img {
	width:100%;
	height:auto;
}
.carousel-inner {
	position:relative;
}
#carousel .carousel-control {
	background:none;
	top:50%;
	font-size:20px;
	text-align:center;
	width:40px;
	height:40px;
	opacity:1;
	position:absolute;
}
#carousel .carousel-control-right {
	right:10%;
}
#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:#fff;
	background: #026394;
	height:40px;
	width:40px;
	z-index:121;
	line-height:40px;
	text-align:center;
	position:absolute;
}
/**********************/
#inner_about {
	padding: 60px 0;
	background: #fbfbfb;
}
.about_mg img {
	padding: 10px;
    box-shadow: 0 1px 9px 2px #e8e8e8;
    -webkit-box-shadow: 0 1px 9px 2px #e8e8e8;
    -o-box-shadow: 0 1px 9px 2px #e8e8e8;
    -moz-box-shadow: 0 1px 9px 2px #e8e8e8;
    background: #f7f7f7;
    margin: 0 auto 30px;
    display: block;
}
.inn_abt_hed span {
    color: #e21f25;
    font-size: 18px;
    background: #fff;
    box-shadow: 0 1px 5px 2px #e8e8e8;
	padding:6px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
	display:table;
	margin-bottom:10px;
}
.inn_abt_hed h1 {
    color: #04638f;
    font-weight: 700;
    font-size: 28px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 20px;
	letter-spacing:1px;
}
.inn_abt_hed p {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.inn_abt_btm {
	margin-bottom:25px;
}
.inn_abt_btm h4 {
    position: relative;
    color: #04638f;
    font-size: 21px;
    display: block;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.inn_abt_btm h4:before {
	position:absolute;
	bottom:0;
	left:0;
	width:80px;
	height:1px;
	background:#04638f;
	display:block;
	content:'';
}
.inn_abt_btm h4:after {
	position:absolute;
	bottom:-5px;
	left:0;
	width:60px;
	height:1px;
	background:#04638f;
	display:block;
	content:'';
}
.rch-head h5 {
	text-align:center;
	font-size:16px;
	padding:15px 0;
	background: #05638e;
	letter-spacing:0.50px;
	color:#fff;
	border-radius:10px 10px;
}
.rch-head h5 span {
	display:inline-block;
	font-weight:bold;
	color:#e21f25;
}
/**********************/
#about_middle {
	padding:60px 0;
}
.mki_dtl h2 {
    font-size: 25px;
    color: #e21f25;
    text-transform: capitalize;
	padding-bottom:5px;
    position: relative;
	margin-bottom:10px;
}
.mki_dtl h2:before {
	position:absolute;
	bottom:0;
	left:0;
	width:80px;
	height:1px;
	background:#e21f25;
	display:block;
	content:'';
}
.mki_dtl h2:after {
	position:absolute;
	bottom:-5px;
	left:0;
	width:60px;
	height:1px;
	background:#e21f25;
	display:block;
	content:'';
}
.mki_dtl span {
	font-size: 16px;
    color: #4c4c4c;
	letter-spacing:0.50px;
	display:block;
    padding-bottom: 10px;
	padding-top:10px;
}
.mki_dtl ul li {
	font-size: 14px;
    line-height: 26px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.mki_dtl ul li i {
	color: #e21f25;
}
.mki_dtl {
	padding-bottom:25px;
}
.mki_dtl0 ul li span {
    height: 40px;
    width: 40px;
    background: #05638e;
    content: "";
    margin-right: 10px;
	display:inline-block;
    border-radius: 0 30px 30px;
}
.mki_dtl0 ul li span i {
	color:#fff;
	font-size:16px;
	text-align:center;
	display:block;
	line-height:40px;
}
.mki_dtl0 ul li {
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 6%);
    position: relative;
    z-index: 1;
    border-radius: 0 50px 50px 50px;
    margin-bottom: 20px;
    background: #fff;
}
.mki_dtl0 ul li p {
	font-size: 14px;
    line-height: 26px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.certificate_bx {
    background: #f2f4f6;
    box-shadow: 2px 3px 6px #f2f4f6;
    margin-bottom: 20px;
    padding: 10px 10px;
    border: 1px solid rgb(70 70 70 / 10%);
}
.certificate_mg {
    margin-bottom: 15px;
}
.certificate_bx span {
    letter-spacing: 1px;
    color: #e63a22;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: block;
    text-transform: uppercase;
}
/*********************/
#packaging_section {
	padding:60px 0;
}
.mki_dtl p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-top: 10px;
    font-family: 'Montserrat', sans-serif;
}
#customized_section {
	padding:60px 0;
	background: #fbfbfb;
}
/**********************/
#contact_banner {
	position:relative;
}
#contact_Section {
	background: #fbfbfb;
	padding-bottom:60px;
}
.contact_bg {
	position: relative;
    z-index: 1;
    padding: 40px 20px;
    margin: -100px 0 0;
    background: #fbfbfb;
	width:100%;
}
.contact_bx {
	padding:30px 20px;
	border:2px solid rgb(230,232,235);
	border-radius:10px 10px 0 10px;
	background:#fff;
	display: flex;
	margin-bottom:15px;
}
.cont_mg {
	float:left;
	margin-right:20px;
}
.cont_dtl_bx h5 {
    color: #04638f;
    font-size: 18px;
    display: block;
	font-weight:bold;
	letter-spacing:1px;
	padding-bottom:10px;
}
.cont_dtl_bx span {
	color: #4c4c4c;
    letter-spacing: 0.50px;
    display: block;
    padding: 5px 0;
}
.cont_dtl_bx a {
    font-size: 14px;
    color: #4c4c4c;
    letter-spacing: 1px;
    line-height:24px;
	display:block;
    font-family: 'Montserrat', sans-serif;
}
.cont_dtl_bx p {
    font-size: 14px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.inn_contact_rht {
	margin-bottom:25px;
	padding-top:60px;
}
.inn_contact_rht h3 {
    position: relative;
    color: #04638f;
    font-size: 27px;
    display: block;
	font-weight:bold;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.inn_contact_rht h3:before {
	position:absolute;
	bottom:0;
	left:0;
	width:80px;
	height:1px;
	background:#04638f;
	display:block;
	content:'';
}
.inn_contact_rht h3:after {
	position:absolute;
	bottom:-5px;
	left:0;
	width:60px;
	height:1px;
	background:#04638f;
	display:block;
	content:'';
}
.contact-form p {
	font-size: 14px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.contact-form .form-group input[type="text"], .contact-form .form-group input[type="email"] {
    display: block;
    width: 100%;
    color: #000;
    line-height: 26px;
    padding: 10px 28px;
    height: 60px;
    font-size: 14px;
    border-radius: 0 10px 10px 10px;
    background: #fff;
    border: 3px solid rgb(230,232,235);
}
.contact-form .form-group input::placeholder {
	color: #a8a8a8;
	opacity: 1; 
	font-size:14px;
}
.contact-form .form-group textarea::placeholder {
	color: #a8a8a8;
	opacity: 1; 
	font-size:14px;
}
.contact-form .form-group textarea {
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 28px;
    color: #000;
    height: 120px;
    font-size: 14px;
    border-radius: 0 10px 10px 10px;
    border: 3px solid rgb(230,232,235);
    background: #fff;
}
.butn-bg {
	font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    background: #ee2324;
    color: #fff;
	cursor:pointer;
    width:100%;
	line-height:40px;
    display: block;
	border:0px;
}
.butn-bg:hover {
	color:#fff;
	background:#026394;
}
/************************/
#download_section {
	padding:60px 0;
}
.download_bx img {
    padding: 10px;
    background: #f7f7f7;
    display: block;
}
.download_dtl span i {
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	color:#fff;
	display:block;
	margin-right:20px;
	float:left;
	background:#ee2324;
}
.download_dtl a span {
	background:#000;
	min-height:45px;
	line-height:45px;
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	color:#fff;
	letter-spacing:0.25px;
	display:block;
}
.download_dtl a:hover span {
	background:#026394;
}
.inn_prd_dlt h5 {
	color: #04638f;
    font-size: 18px;
    display: block;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.inn_prd_dlt h5 span {
	color:#e21f25;
    font-size: 18px;
}
.resource_lst ul li a {
	width:50%;
    display:block;
    float:left;
	padding:10px 15px;
	text-align:center;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color:#04638f;
	margin-bottom:30px;
	letter-spacing:1px;
	border:1px solid #f6f6f6;
}
.resource_lst ul li a:hover {
	color:#e31e25;
	text-decoration:none;
	background:#f9f9f9;
}
.resource_lft h6 {
    font-size: 16px;
    color: #e21f25;
    text-transform: uppercase;
    padding-bottom: 5px;
	position:relative;
	margin-bottom:30px;
    letter-spacing: 1px;
}
.resource_lft h6:before {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 1px;
    background: #e21f25;
    display: block;
    content: '';
}
.resource_lft h6:after {
    position: absolute;
    bottom: -5px;
    width: 60px;
    height: 1px;
    background: #e21f25;
    display: block;
    content: '';
}
.resource_lft {
	padding-bottom:30px;
}
.resource_lft p a {
	font-size: 14px;
    line-height: 30px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.resource_lft p a:hover {
	color:#e31d24;
}
.resource_lft p span {
	color:#026394;
}
.resource_rht span {
	padding:20px 15px;
	text-align:center;
	display:block;
    color: #e21f25;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.resource_rht a {
	padding:15px 30px;
	background:#05638e;
	color:#fff;
	margin-top:15px;
	display:inline-block;
	margin-right:10px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
	text-transform:capitalize;
}
.resource_rht a:hover {
	background:#ee2324;
	color:#fff;
}
/*************************/
.product_dtl {
	padding: 10px 10px;
    background: #f9f9f9;
    margin-bottom: 15px;
}
.product_dtl h4 {
	font-size: 21px;
    color: #000;
    text-transform: capitalize;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 10px;
}
.product_dtl h4:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background: #e21f25;
    display: block;
    content: '';
}
.product_dtl h4:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #e21f25;
    display: block;
    content: '';
}
/***********************/
.modal-header h4, .user_hed h4 {
	font-size: 20px;
	color: #e21f25;
	padding-bottom: 15px;
	display: inline-block;
}
.custom-form .form-control {
	padding: 10px 10px;
    background: #fff;
	margin-bottom:10px;
	color:#000;
    height: auto;
	font-size:12px;
    border-radius: 0px;
    border: 2px solid #e9ecef;
}
.modal-button {
	padding: 15px 25px;
	background: #05638e;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	border: 0px;
	cursor: pointer;
	margin-top:12px;
}
.modal-button:hover {
	padding: 15px 25px;
	background: #000;
	width: 100%;
	color: #fff;
	border: 0px;
}
button.close {
	background: #000;
	color: #fff;
	display: block;
	opacity:1;
}
.custom-form label {
	color: #000;
    letter-spacing: 0.50px;
	font-size:13px;
	display:block;
	font-family: 'Montserrat', sans-serif;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #fff!important;
    text-decoration: none;
    opacity: 1!important;
}
.modal-header {
	margin-bottom:15px;
}
.modal-content {
	background-color: #f9f9f9;
}
.custom-form textarea.form-control {
    height:100px;
}
.mod-label {
	color: #000;
    letter-spacing: 0.50px;
    font-size: 13px;
    display: block;
    padding-bottom:15px;
	padding-left:5px;
	display:inline-block;
    font-family: 'Montserrat', sans-serif;
}
#login_dtl {
	padding:30px 0;
}
/**********************/
.career_bx {
	background-color: rgb(255, 255, 255);
    padding: 40px 30px;
	margin-top:20px;
    border-bottom: 3px solid #e8e8e8;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.career_dtl h4 {
	padding:5px 0 5px 10px;
	color:#026394;
	font-size:22px;
	letter-spacing:1px;
	border-left:3px solid #026394;
	margin-bottom:15px;
}
.career_dtl span {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.50px;
    color: #3e3e3e;
    display: block;
}
.career_dtl a {
	font-size: 16px;
    color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    padding-top: 15px;
    display: inline-block;
    padding: 10px 15px;
    background: #e21f25;
    margin-top: 15px;
	width: 100%;
    text-align: center;
}
.career_dtl a:hover {
	color:#fff;
	background:#026394;
}

.career_form {
	background-color: rgb(255, 255, 255);
    padding: 40px 30px;
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
    border-bottom: 3px solid #e8e8e8;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.career_form h3 {
	text-align:center;
	color: #026394;
	font-size:24px;
	font-weight:bold;
	letter-spacing:1px;
	padding-bottom:25px;
}
.form_hed h6 {
	color:#000;
	font-size:16px;
	letter-spacing:1px;
	padding:10px 0;
}
.career_form .form-group input::placeholder {
    color: #a8a8a8;
}
.cont_frm .form-group input {
    display: block;
    width: 100%;
    padding: 12px 25px;
	border:0px;
    font-size: 15px;
	color:#000;
    background: #fbfbfb;
	font-family: 'Montserrat', sans-serif;
}
label.radio-inline {
	font-size: 15px;
	color: #000;
}
.career_form label.form-group {
    display: inline-block;
    width: 100%;
	border:0px;
	color: #000;
    font-size: 16px;
	font-weight:normal;
	margin-bottom:0px;
	font-family: 'Montserrat', sans-serif;
}
.career_form .form-group select {
    display: block;
    width: 100%;
    padding: 12px 25px;
	border:0px;
    color: #8e8e8e;
    font-size: 15px;
    background: #fbfbfb;
	font-family: 'Montserrat', sans-serif;
}
.career_form .form-group select option {
	color:#000;
}
.career_form .form-group textarea {
	height: 140px;
	color:#8e8e8e;
}
.career_form .form-group textarea::placeholder {
	color:#a8a8a8;
}
.inn_career_para0 {
    text-align: center;
    font-size: 14px;
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    padding: 0 5% 30px;
    line-height: 24px;
}
.butn-career {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 0px 20px;
    background: #ee2324;
    color: #fff;
    cursor: pointer;
    line-height: 40px;
    display: inline;
    border: 0px;
}
.butn-career:hover {
	background:#026394;
}
