@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&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:#4a4a4a;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
}
.container {
	min-width: 1180px;
}
/**************************/
.header_tp {
	background:#fff;
	padding:10px 0;
	border-top: 3px solid #f4f5f7;
}
.header_tp_lft {
	/*float:right;*/
	margin: 10px 0;
}
.header_tp_lft ul {
	display: table;
	margin: 0 auto;
}
.header_tp_lft ul li {
	display: inline-block;
    padding-right: 20px;
    float: left;	
}
.header_tp_lft ul li a {
	color: #4a4a4a;
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.50px;
	font-family: 'Montserrat', sans-serif;
}
.header_tp_lft ul li span {
	color: #4a4a4a;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.50px;
}
.header_tp_lft ul li a:hover {
	color: #0b2b55;
}
.header_tp_lft ul li img {
	padding: 5px;
    margin-right: 10px;
    display: inline-block;
    background-color: #0b2b55;
    margin-top: -20px;
}
.iso_data span {
	display: block;
	text-align: center;
	font-size: 15px;
    letter-spacing: 0.25px;
    color: #0b2b55;	
    font-weight: 600;
}
/*************************/
.fixed-top {
	position:relative;
	display:block;
	background:#fff;
	top:0px;
    box-shadow:0 2px 24px 0 rgb(0 0 0 / 15%);
}
.logo {
	display: none;
    width: 25%;
    margin-top: -5%;
    background-color: #fff;
    padding: 10px 10px;
}
.logo img {
	width: 100%;
}
.header_menu {
    display: flex;
    background-color: #0b2b55;
}
.main-nav {
	transition:all.3s ease-in-out;
}
.main-nav > ul {
	margin: 5px auto;
    display: table;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 200ms linear;
    position: relative;
    display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding:10px 15px 10px;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #B2AEAA;
	text-decoration: none;
	font-weight: 600;
}
.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;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 160px;
	position: relative;
}
.main-nav .drop-down ul li {
	margin-top:0px;
}
.main-nav .drop-down ul li a {
	padding: 7px 10px;
    color: #464646;
	font-weight:600;
    text-transform: uppercase;
    transition: all 200ms linear;
	font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    font-size: 14px;
	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: #0b2b55;
}
.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%;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: #fafafa;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #000;
	padding: 8px 10px;
	font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.50px;
    position: relative;
    font-family: Montserrat;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #000;
	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: 999;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none;
	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;
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #004289;
}
.header-scrolled .main-nav > ul {
	margin-top:5px;
}
/***********************/
.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: #2d4690;
    background: #ffffff;
    height: 55px;
    width: 40px;
    font-weight: bold;
    z-index: 121;
    line-height: 52px;
    border: 2px solid #e0e0e0;
    text-align: center;
    position: absolute;
    border-radius: 50%;
}
.carousel-indicators {
	left: 20%;
    right: auto;
    bottom: 30px;
	/*top:45%;
	margin-right:25px;
	display:block;*/
}
.carousel-indicators li {
	border:2px solid #fff;
	display:inline-block;
	height:18px;
	margin-bottom:4px;
	width:18px;
	background:#4a4a4a;
	border-radius:50%;
}
.carousel-indicators .active {
	background:#0b2b55;
}
/**********************/
#about_main {
	padding: 60px 0 60px 0;
}
.about_bg {
	position: relative;
	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 7%);
	width: 100%;
	min-height: 420px;
	float: left;
	background-color: #fff;
}
.about_bg img {
	min-height: 420px;
	object-fit: cover;
}
.about_overlay {
	position: absolute;
	text-align:center;
	background-color: rgb(11 43 85 / 90%);
	width: 250px;
	height: 100%;
	top: 0;
	right: 0;
	display: block;
	padding: 15% 20px 0 20px;
	justify-content: center;
	align-items: center;
}
.about_slide_dtl {
	width: 120px;
    height: 120px;
    display: block;
    border-radius: 50%;
    border: 5px solid #f4f5f7;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
}
.about_slide_dtl img {
	width: 65px!important;
	min-height: auto;
    margin: 26px auto;
    display: table;
}
.about_slide h5 {
	font-size: 18px;
	color: #fff;
	letter-spacing: 1.5px;
	font-weight: 500;
	padding-top: 15px;
	padding-bottom: 10px;
	display: block;
	line-height: 24px;
}
.about_slide span {
	font-size: 15px;
	letter-spacing: 2px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
}
.about_slide .owl-dot, .about_slide .owl-nav .owl-next, .about_slide .owl-nav .owl-prev {
	display:none;
}
.about_hed h1 {
	font-size: 30px;
	color: #0b2b55;
	font-weight: 600;
	padding-bottom: 10px;
	letter-spacing: 1px;
}
.about_hed span {
	font-size: 17px;
	letter-spacing: 5px;
	color: #4a4a4a;
	display: inline-block;
	font-weight: 500;
	padding-bottom: 15px;
}
.about_hed span strong {
	color: #0b2b55;
}
.about_hed p {
	color: #4a4a4a;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    text-align: justify;
    padding-bottom: 10px;
}
.about_hed {
	padding-right: 30px;
}
.abt-btn {
	padding: 10px 25px;
	background-color: #0b2b55;
	color: #fff;
	margin-top: 15px;
	font-weight: 500;
	display: inline-block;
}
.abt-btn:hover {
	color: #fff;
	background-color: #4a4a4a;
}
/**********************/
#about_bottom {
	padding: 30px 0;
	background-color: #0b2b55;
}
.philosophy_dtl h4 {
	font-size: 21px;
    font-weight: 600;
    display: block;
    color: #fff;
    padding-bottom: 10px;
    letter-spacing: 1px;	
}
.philosophy_dtl span {
	font-size: 17px;
	letter-spacing: 0.25px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	padding-bottom: 15px;
}
.enquiry_btn a {
	padding: 10px 25px;
	background-color: #fff;
	color: #6b0116;
	float: right;
	margin-top: 20px;
	font-weight: 500;
	display: block;
	border-radius: 25px;
}
.enquiry_btn a:hover {
	background-color: #4a4a4a;
	color: #fff;
}
/**********************/
#product_main {
 	position: relative;
 	background: #f4f5f7;
    padding: 60px 0 40px 0;
    background-position: center;
    background-attachment: fixed;
}
.product_hed h2 {
 	text-align: center;;
 	font-size: 26px;
 	font-weight: 600;
 	color: #0b2b55;
 	padding-bottom: 30px;
 	letter-spacing: 1px;
 	text-transform: uppercase;
}
.product_bx_main {
	margin-bottom: 30px;
}
.product_images {
 	position: relative;
 	overflow: hidden;
 	display: block;
}
.product_images img {
 	width: 100%;
 	display: block;
 	box-shadow: 0 1px 9px 2px #e8e8e8;
    -webkit-box-shadow: 0 1px 9px 2px #e8e8e8;
 	border: 4px solid #fff;
 	transform: scale(1.01);
 	transition: all .5s ease;
}
.product_bx_main:hover .product_images img {
	transform: scale(1.2);
}
.product_bx_main:hover .images_overlay {
	opacity: 1;
}
.product_images:before {
    transform: scale(0,1);
    transform-origin: bottom center;
    border-top: 4px solid #0b2b55;
    border-bottom: 4px solid #0b2b55;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transition: all .3s ease .5s;
    border-radius: 0;
    z-index: 3;
}
.product_images:after {
    transform: scale(1,0);
    transform-origin: left center;
    border-left: 4px solid #0b2b55;
    border-right: 4px solid #0b2b55;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transition: all .3s ease .5s;
    border-radius: 0;
    z-index: 3;
}
.product_bx_main:hover .product_images:before {
    transform: scale(1,1);
}
.product_bx_main:hover .product_images:after {
    transform: scale(1,1);
}
.product_title {
    width: 100%;
    padding: 13px 15px 13px 10px;
    display: block;
    margin: 10px auto 0;
    background: #0b2b55;
    position: relative;
    z-index: 9;
}
.product_bx_main:hover .product_title {
	background: #015192;
}
.product_title h5 {
	font-size: 18px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
}
/**********************/
#other_product_main {
	padding: 60px 0;
}
.industry_bx .image-block {
    position: relative;
    margin-bottom: 30px;
}
.industry_bx .main-content {
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, 50%);
    width: calc(100% - 60px);
    box-shadow: 0 0 21px rgb(0 0 0 / 10%);
}
.main-content h5 {
    font-size: 18px;
    color: #0b2b55;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 15px 0;
    display: block;
}
/**********************/
#footer_top {
	background: #2D3640;
	width: 100%;
}
.footer_top_left {
	position: relative;
}
.footer_top_left:after {
	content: '';
    display: block;
    position: absolute;
    left: 100%;
    border-bottom: 25px solid #2D3640;
    border-top: 25px solid #fff;
    border-left: 25px solid #2D3640;
    border-right: 25px solid #242B33;
    z-index: 3;
}
.footer_top_right {
	background-color: #242B33 !important;
    min-height: 50px !important;
}
footer {
	background:#2D3640;
	padding:40px 0;
}
.footer_hed h6 {
	font-size:15px;
	color:#fff;
	letter-spacing:1px;
	padding-bottom:10px;
	text-transform: uppercase;
	font-weight:500;
	margin-bottom:15px;
	display:block;
	position:relative;
}
.footer_hed h6:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:40px;
	height:2px;
	border-radius:50px;
	background:#fff;
	display:block;
}
.footer_hed ul li {
	position:relative;
	display:block;
}
.footer_hed ul li i {
	margin-right: 8px;
	line-height: 22px;
}
.footer_hed ul li a {
	font-size: 14px;
    font-weight: 400;
    padding-bottom: 5px;
    color: #fff;
    letter-spacing: 0.50px;
	display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.footer_hed ul li a:hover {
	color: #0061af;
}
.foot_cont {
	padding-bottom:10px;
	display: inline-block;
}
.foot_cont i {
	float: left;
    width: 30px;
    height: 30px;
    line-height: 26px;
    font-size: 14px;
    text-align: center;
    display: block;
    background: #fff;
    color: #0b2b55;
    border: 1px solid #fff;
}
.cont {
	padding-left:45px;
}
.cont p {
	color:#fff;
	display:block;
	font-size:13px;
	letter-spacing:0.50px;
	font-weight: 500;
    line-height: 22px;
}
.cont span {
	line-height: 30px;
	display: inline-block;
}
.cont span a {
	font-weight: 500;
    letter-spacing: 0.50px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
	color:#fff;
}
.cont span a:hover {
	color: #1c9cea;
}
.social_link ul li {
	float:left;
}
.social_link ul li a i {
	width:35px;
	height:35px;
	line-height:34px;
	text-align:center;
	font-size:15px;
	display:block;
	color:#fff;
}
.social_link ul li a i:hover {
	background:#fff;
	color: #2d3640;
}
.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:#1c9cea;
	color:#fff;
}
.social_link ul li a .fa-whatsapp {
	background:#44c052;
	color:#fff;
}
.symbol img {
	width: 80%;
	margin-bottom: 20px;
}
.footer_copy {
	padding:10px 0;
	background:#0b2b55;
}
.copy_dtl p {
	color: #fff;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
	font-weight:500;
	text-align:center;
}
.certificate ul {
	margin: 0 auto;
	display: table;
}
.certificate ul li span img {
	width: 30%;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 5px;
    background: #fff;
    display: inline-block;
    float: left;
}
.industry_slide button.owl-prev, .industry_slide button.owl-next {
	display: none;
}
/**********************/
.enquire_btn {
    right: 0;
    position: fixed;
    top: 250px;
    z-index: 10000;
}

.fixed_social {
	position:fixed;
	top:65%;
	right: 0;
	z-index: 9999;
}
.fixed_social a {
	display:block;
	height:40px;
	position:relative;
	line-height:40px;
	width:40px;
	z-index:2;
	box-shadow: 0 0 5px #ccc;
	margin-bottom:5px;
	text-align: center;
}
.fixed_social a:hover>span {
	visibility:visible;
	right:43px;
	opacity:1;
}
.fixed_social a span {
	line-height:40px;
	right:80px;
	position:absolute;
	text-align:center;
	width:150px;
	visibility:hidden;
	transition-duration:.5s;
	z-index:1;
	opacity:0;
	color:#fff;
	background:#6b0116;
	box-shadow: 0 0 5px 0px #888;
}
.fixed_social .Quick_Connect {
	background-color:#fff;
}
.fixed_social .Quick_Connect span {
	background-color:#3b5998;
}
.fixed_social .Call_Fixed {
	background-color:#fff;
}
.fixed_social .Call_Fixed span {
	background-color:#007ab9;
}
.fixed_social .Whatsapp {
	background-color:#fff;
}
.fixed_social .Whatsapp span {
	background-color:#2cb742;
}
/**********************/
#inner_banner_slide {
	background:url(../images/inner-product-bg.jpg) no-repeat;
	background-attachment:fixed;
	background-size:cover;
	padding:80px 20px;
	display:block;
	background-position: 50% 0px;
	text-align:center;
}
#inner_banner_slide h1 {
	font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
	text-transform: uppercase;
    padding-bottom: 10px;
}
#inner_banner_slide ul li {
	display:inline-block;
	padding:0 5px;
}
#inner_banner_slide ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
#inner_banner_slide ul li a:hover {
	color:#0b2b55;
}
#inner_banner_slide ul li span {
	color:#fff;
    font-weight: 500;
}
#inner_banner_slide ul li a i {
	margin-left:5px;
	color:#0b2b55;
}
/*******************/
#inner_product_section {
	padding: 60px 0 20px 0;
}
#inner_product_section0 {
	padding: 20px 0 60px 0;
}
.product_inner_heading span {
	position: relative;
	font-size: 20px;
	color: #0b2b55;
	font-weight: 600;
	padding-left: 60px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
}
.product_inner_heading span:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 40px;
	height: 2px;
	background: #0b2b55;
	transform: translateY(-50%);
}
.product_inner_heading h2 {
    font-size: 26px;
    font-weight: 600;
    color: #0b2b55;
    padding-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.product_description p {
    color: #4a4a4a;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    padding-bottom: 10px;
}
.product_image {
	padding: 10px;
    background: #fff;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
    margin-bottom: 10px;
}
.specification_dtl h6 {
	padding-bottom: 20px;
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}
.specification_dtl h4 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 7px;
	color: #fff;
	display: block;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 1px;
}
.specification_dtl h4::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: #fff;
	display: block;
}
.specification_dtl ul li span {
	color: #fff;
    line-height: 30px;
    letter-spacing: 0.25px;
    font-weight: 500;
}
.specification_dtl ul li span b {
	letter-spacing: 0.50px;
}
.specification_dtl p {
	color: #fff;
    line-height: 26px;
    letter-spacing: 0.25px;
    font-weight: 500;
    padding-bottom: 10px;
}
.images_feature_bx {
	background: #0B2B54;
    display: inline-block;
    padding: 40px 40px;
    width: 130%;
    height: auto;
    margin-left: -30%;
    margin-top: 80px;
}
.inn_prod_table {
	margin-top: 40px;
	background: #fff;
	padding: 15px;	
	min-height: 92%;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
}
.other_prod_table {
	margin-top: 15px;
	background: #fff;
	padding: 15px;	
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
}
.table-bordered {
	border:0px;
}
.inn_prod_table th, .other_prod_table th {
	border: 0px;
	font-size: 15px;
	background: #fff;
	font-weight: 600;
	padding:10px 8px;
	letter-spacing: 0.50px;
	vertical-align:middle !important;
	color: #ff0000;
}
.inn_prod_table td, .other_prod_table td {
	border:0px;
	border-bottom:2px solid #f4f4f4;
	border-right: 1px solid #fff;
    color: #4a4a4a;
	letter-spacing:0.50px;
	font-weight:500;
	font-size:14px;
	padding:10px 8px;
}
.inn_prod_table td:last-child, .other_prod_table td:last-child {
	border-right:0px;
}
.inn_prod_table tr:nth-child(even), .other_prod_table tr:nth-child(even) {
  	background: #2d3640;
 	color: #fff;
}
.inn_prod_table tr:nth-child(even) td, .other_prod_table tr:nth-child(even) td {
 	color: #fff;
}
.inn_prod_table tr:nth-child(odd), .other_prod_table tr:nth-child(odd) {
  	background: #f4f5f7;
}
.padding_tp {
	padding-top: 30px;
}
.other_dtl h4, .other_dtl0 h4 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 7px;
	color: #0b2b55;
	display: block;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 1px;
}
.other_dtl h4::after, .other_dtl0 h4:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: #0b2b55;
	display: block;
}
.other_dtl ul li span {
	color: #4a4a4a;
    line-height: 25px;
    display:block;
    letter-spacing: 0.25px;
    font-weight: 500;
}
.other_dtl ul li span i {
	color: #0b2b55;
	font-size: 16px;
	margin-right: 5px;
}
.other_dtl0 ul li {
	float: left;
	margin-right: 15px;
}
.other_dtl0 span {
    font-size: 17px;
    letter-spacing: 0.25px;
    color: #0b2b55;
    display: inline-block;
    font-weight: 500;
    padding-bottom: 10px;
}
.other_dtl0 ul li span i {
    font-size: 12px;
    color: #4a4a4a;
    opacity: .5;
}
.other_dtl0 ul li span {
	color: #4a4a4a;
    line-height: 28px;
    font-size: 14px;
    padding-bottom: 0px;
    display:block;
    letter-spacing: 0.25px;
    font-weight: 500;
}
.standard_table {
	background:#fff;
	box-shadow:0 2px 10px 0 rgb(0 0 0 / 10%);
	padding:15px;
}
.table-bordered {
	border:0px;
}
.table {
	margin-bottom:0px;
}
.standard_table th {
	border:0px;
	font-size: 13px;
    color: #fff;
	font-weight:500;
	letter-spacing:0.25px;
	padding:6px;
	text-align:center;
	border-right:1px solid #fff;
	background:#0b2b54;
}
.standard_table td {
	border:0px;
	border-right:2px solid #fafafa;
    color: #464646;
	font-weight:500;
	vertical-align: middle;
	font-size:13px;
	padding:8px 5px;
	text-align:center;
	text-transform: capitalize;
}
.standard_table td:last-child {
	border-right:0px;
}
.standard_table tr:nth-child(even) {
	background: #fff;
}
.standard_table tr:nth-child(odd) {
	background: #fafafa;
}
.table thead th {
	vertical-align:middle;
}
.download a {
    background: #0b2b54;
    color: #fff;
    display: inline-block;
    font-size: 14px;
	padding:10px 25px;
    text-align: center;
    letter-spacing: 0.50px;
	border-radius:25px;
    font-weight: 500;
    margin-top: 20px;
}
.download a:hover {
	background:#242b33;
	color:#fff;
}
/*******************/
#contact_section {
	padding: 60px 0 20px 0;
	background: #f4f5f7;
}
.contact_heading {
	text-align: center;
	padding-bottom: 40px;
}
.contact_heading h6 {
	font-size: 16px;
    font-weight: 600;
    display: block;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.contact_heading h2 {
	font-size: 26px;
    font-weight: 600;
    color: #0b2b55;
    padding-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact_heading span {
    color: #4a4a4a;
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 0 15% 0;
}
.contact_detail_sec {
	padding-top:20%;
	padding-right:20px;
}
.contact_dtl h5 {
	font-size: 18px;
    font-weight: bold;
    display: block;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    padding-bottom: 5px;
}
.contact span {
	color: #333;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 600;
    display: block;
	padding-bottom:20px;
}
.contact_dtl ul {
	display:inline-block;
	margin-top:20px;
}
.contact_dtl ul li {
	display: flow-root;
}
.contact_dtl ul li .c_icon {
	display: block;
	width: 45px;
	height: 45px;
	float: left;
	text-align: center;	
	margin-right: 10px;
    margin-bottom: 10px;
}
.contact_dtl ul li .c_icon i {
	background: #0B2B54;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%);
    display: block;
    color: #fff;
    margin-right: 15px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
}
.contact_dtl ul li a {
	color:#333;
    letter-spacing: 0.25px;
    font-weight: 600;
	display:block;
}
.contact_dtl ul li p {
	color:#333;
    letter-spacing: 0.25px;
    font-weight: 600;
	display: block;
	padding-bottom: 10px;
}
.contact_dtl ul li a:hover {
	color:#0B2B54;
	text-decoration: underline;
}
.contact_dtl ul li span {
	font-size: 15px;
    font-weight: 600;
    color: #0B2B54;
}
.contact_form_heading h4 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: #0b2b55;
    display: block;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 1px;
}
.contact_form_heading h4::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    background: #0b2b55;
    display: block;
}
.contact_form {
	background:#fff;
	padding: 30px 30px 40px;
	box-shadow: 0 2px 10px 0 rgb(0 0 0 / 4%);
}
.contact_form .form-group input {
    display: block;
    width: 100%;
    color: #4a4a4a;
	font-weight:600;
	border: 0px;
    line-height: 24px;
    padding: 15px 15px;
    font-size: 14px;
    background: #f1f5f8;
	margin-bottom: 20px;
}
.contact_form .form-group textarea {
    display: block;
    width: 100%;
    color: #4a4a4a;
	font-weight:600;
	border: 0px;
	min-height: 100px;
    line-height: 24px;
    padding: 15px 15px;
    font-size: 14px;
    background: #f4f5f7;
	margin-bottom: 20px;
}
.butn-bg {
    font-size: 14px;
    padding: 10px 30px;
    background: #0B2B54;
    color: #fff;
	cursor:pointer;
	letter-spacing:1px;
    display: block;
	font-weight:600;
	border:0px;
}
.butn-bg:hover {
	border:0px;
	color:#fff;
	background:#2d3640;
}
.location iframe {
	height: 400px;
	border: 4px solid #f4f5f7;
	border-radius: 15px;
	margin-bottom: 40px;
}
#contact_section_two {
	padding: 45px 0;
}
.other_location h5 {
    font-size: 18px;
    font-weight: bold;
    display: block;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    padding-bottom: 10px;
}
.other_location p {
	color:#333;
    letter-spacing: 0.25px;
    font-weight: 600;
	display: block;
	padding-bottom: 5px;
}
.other_location ul li {
	display: inline-block;
	padding-right: 10px;
}
.other_location ul li a {
	color:#333;
    letter-spacing: 0.25px;
    font-weight: 600;
	display:block;
}
.other_location ul li a:hover {
	color:#0B2B54;
	text-decoration: underline;
}
.other_location ul {
	padding-bottom: 20px;
}
map iframe {
	min-height: 300px;
	border: 4px solid #f4f5f7;
	border-radius: 15px;
	margin-bottom: 15px;
}
/********************/
#quality_section {
	padding: 60px 0;
}
.quality_description p {
	color: #4a4a4a;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    padding-bottom: 10px;
}
.padding_btm {
	padding-bottom: 40px;
}
.quality_description span {
	padding-bottom: 10px;
    color: #4a4a4a;
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.25px;
}
.quality_description h4 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 7px;
    color: #0b2b54;
    display: block;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}
.quality_description h4::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #0b2b54;
    display: block;
}
.quality_description ul li span {
    color: #4a4a4a;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding-bottom: 5px;
    letter-spacing: 0.25px;
}
.quality_description ul li span i {
	color: #0b2b54;
	margin-right: 5px;
}
.quality_description {
	padding-bottom: 20px;
}

.panel {
    border-radius: 5px;
    box-shadow: -5px -5px 10px rgb(255 255 255 / 60%), 5px 5px 15px rgb(0 0 0 / 10%);
    cursor: pointer;
    padding: 15px 20px;
    margin-top: 20px;
	background: #f4f5f7;
}
.panel-content span {
    padding:2px 0 2px 8px;
	border-left:3px solid #0b2b55;
	margin-bottom:10px;
    color: #0b2b55;
    display: block;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}
.panel-content p {
    color: #4a4a4a;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    padding-bottom: 10px;
}
.panel-content ul li p {
	color: #4a4a4a;
    line-height: 22px;
    display: block;
    letter-spacing: 0.25px;
    font-weight: 500;
}
.panel-content ul li p i {
    color: #0b2b55;
    font-size: 16px;
    margin-right: 5px;
}
/*********************/
#about_us_banner {
	background: url(../images/about-us-banner.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 20px;
    display: block;
    background-position: 50% 0px;
    text-align: center;
}
#about_us_banner h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 10px;
}
#about_inner_sectoion {
	padding:60px 0;
}
.md_mg {
	/*position:relative;*/
	padding: 5px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
    background: #fff;
}
.md_mg img {
	margin: 0 auto;
	display: table;
}
.tag {
	/*position: absolute;
    bottom: 15px;
    left: 20px;*/
    padding: 8px 18px;
	/*width:90%;*/
	text-align:center;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    background: #0b2b55;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.50px;
}
.company_data p {
    color: #4a4a4a;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    padding-bottom: 10px;
}
.company_data p a:hover {
    color: #1c9cea;
}
#about_second_section {
	padding:60px 0;
	background:#f4f5f7;
}
.about_inn_detail span {
   	color: #4a4a4a;
    letter-spacing: 0.25px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    display: block;
    line-height: 24px;
    padding-left: 20px;
    padding-bottom: 10px;
}
.about_inn_detail span i {
	font-size: 12px;
    color: #0b2b55;
    position: absolute;
    top: 7px;
    left: 0;
}
.break, .about_inn_detail {
    padding-top: 20px;
}
.management_hed h2 {
	font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0b2b55;
	text-align:center;
    text-transform: uppercase;
    padding-bottom: 20px;
}
#about_inner_last {
	padding:60px 0 40px 0;
}
.other_data h4 {
	font-size: 21px;
    color: #0b2b55;
	padding-bottom:15px;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
}
.other_data ul li span {
	position: relative;
    padding: 5px 0 5px 25px;
	display:block;
    color: #4a4a4a;
    letter-spacing: 0.25px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
}
.other_data ul li span i {
    position: absolute;
    content: '';
    top: 6px;
	font-size:18px;
    color: #0b2b55;
    left: 0px;
    display: block;
    margin-right: 20px;
}
.other_data {
	padding-bottom:15px;
}
.certificate_bx {
	padding: 5px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
    background: #fff;
}
.note {
	padding-top: 25px;
}
.note h6 {
    padding-bottom: 10px;
    color: #0b2b55;
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.note p {
    color: #4a4a4a;
    display: block;
    padding-bottom: 10px;
    letter-spacing: 0.25px;
    font-weight: 500;
}