@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&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;
}
button:focus{
  outline: 0px;
}
body {
	font-size:14px;
	color:#2d363d;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x: hidden;
}
body::-webkit-scrollbar-track {
 	-webkit-box-shadow: inset 0 0 6px rgba(40,75,140,0.1);
 	background-color:#f6f6f6;
}
body::-webkit-scrollbar { 
	width:7px;
}
body::-webkit-scrollbar-thumb { 
	background-color:#031d40; 
	border-radius:10px;
}
body::-webkit-scrollbar-thumb:hover { 
	background-color:#000;
}
/**************************/
.support {
	float: left;
	margin-right: 20px;
}
.support ul li {
	display: inline-block;
    color: #031d40;
    font-size: 14px;
}
.support ul li img {
	width: 55px;
    height: auto;
    margin-right: 8px;
    margin-top: -10px;
}
.support ul li span {
	font-size: 15px;
    font-weight: 600;
    color: #7f0303;
}
.support ul li a {
	padding: 0px !important;
}
li.support {
	border-left:3px solid #eeeeee;
	margin-left: 15px;
	padding-left: 15px;
}
/*************************/
#header {
	padding: 5px 0;
	display:block;
	background:#fff;
    box-shadow:0 3px 5px 0 rgb(0 0 0 / 10%);
}
.fixed-top {
	position: fixed;
	display:block;
}
.logo {
	display:block;
	width: 20%;
}
.logo img {
	width: 100%;
}
.header_menu {
    display: flex;
}
.header-scrolled .main-nav > ul {
	margin-top:15px;
	-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;
}
.main-nav > ul {
	margin-top:15px;
	-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;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	color: #031d40;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    transition: all 200ms linear;
    position: relative;
    display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	padding:10px 8px;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #7f0303;
	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: 160px;
	position: relative;
}
.main-nav .drop-down ul li {
	border-bottom: 1px solid #f4f4f7;
	margin-top:0px;
}
.main-nav .drop-down ul li a {
	padding: 2px 10px;
    color: #031d40;
    border-radius: 2px;
	font-weight:500;
    transition: all 200ms linear;
	font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.50px;
    font-size: 13px;
    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: #031d40;
}
.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 {
	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: #f8f8f8;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #000;
	padding: 6px 20px;
	font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    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: 35px;
	transition: all 0.4s;
	outline: none;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #7f0303;
}
.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: #2e2f43;
}
/***********************/
#carousel {
	overflow:hidden;
}
.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:4%;
}
#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: rgb(255 255 255 / 50%);
    height: 50px;
    width: 50px;
    border-radius: 50px;
    z-index: 121;
    line-height: 50px;
    text-align: center;
    position: absolute;
}
/**********************/
#about_main {
	padding: 70px 0;
}
.about_sec {
	margin-top: -100px !important;
    z-index: 2;
    padding: 0px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
}
.about_sec:before {
    content: '';
    position: absolute;
    width: 25%;
    height: 80%;
    left: -10px;
    bottom: -10px;
    border-left: 10px #7f0303 solid;
    border-bottom: 10px #7f0303 solid;
}
.about_sec:after {
    content: '';
    position: absolute;
    width: 25%;
    height: 80%;
    right: -10px;
    top: -10px;
    border-top: 10px #031d40 solid;
    border-right: 10px #031d40 solid;
}
.pd_none {
	padding-left:0px;
	padding-bottom: 0px;
}
.about_detail_sec {
	padding: 30px;
}
.about_dtl h1 {
	font-size: 30px;
    color: #031d40;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.about_dtl h1:after {
    position: absolute;
    content: '';
    width: 120px;
    height: 4px;
    background: #031d40;
    display: block;
    left: 0;
    bottom: 0;
}
.about_dtl p {
    color: #787878;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
}
.about_dtl a {
	padding: 10px 35px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #031d40;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 40%);
}
.about_dtl a:hover {
    background: #7f0303;
    color: #fff;
}
/**********************/
#project_main {
	/*background: url(../images/project_bg.jpg) no-repeat center center;
	background-attachment: fixed;
    min-height: 500px;
    background-size: cover;
    position: relative;*/
    padding: 60px 0;
    background-color: #031d40;
}
#project_main:before {
    position: absolute;
    content: "";
    background: rgb(3 29 64 / 90%);
    top: 0px;
    border: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    display: none;
}
.hm_product_hed h2 {
	padding-bottom: 10px;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    color: #fff;
    text-transform: uppercase;
}
.hm_product_hed span {
	padding:0 10% 0;
	text-align:center;
	font-size:15px;
	display:block;
	color: #fff;
}
.hm_product_hed {
	padding-bottom:35px;
}
.product_bx {
    background: #fefefe;
    padding: 4px;
}
.product_bx h5 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.25px;
    margin: 15px 6px 12px 6px;
    font-size: 18px;
    color: #7f0303;
}
a:hover .product_bx h5 {
	color: #031d40;
}
.product_dtl .arrow {
	display:flex;
    float:right;
    margin-top:-85px;
	z-index:999;
	position:relative;
	display:none;
}
.product_dtl .arrow span i {
	width:50px;
	height:50px;
	line-height:50px;
	font-size:20px;
	color:#fff;
	display:block;
	text-align:center;
	background:#e41e26;
}
.product-slider .owl-nav {
	margin-top:50px;
	display:block;
	position:relative;
}
.product-slider .owl-nav:before {
	position:absolute;
	content:'';
	width:140%;
	height:2px;
	left:-35%;
	right:0;
	bottom:25px;
	background:#fefefe;
	display:block;
}
.product-slider .owl-prev span {
    position:absolute;
    content:'';
    bottom:0;
	right:100px;
    width:50px;
    height:50px;
    line-height:40px;
    font-size:35px;
    color:#031d40;
    background:#fefefe;
    border-radius:50px;
    display:block;
	border:2px solid rgb(3 29 64 / 50%);
}
.product-slider .owl-next span {
    position:absolute;
    content:'';
    bottom:0;
	right:40px;
    width:50px;
    height:50px;
    line-height:40px;
    font-size:35px;
    color:#031d40;
    background:#fefefe;
    border-radius:50px;
    display:block;
	border:2px solid rgb(3 29 64 / 50%);
}	
/**********************/
#process_main {
	padding: 50px 0 30px 0;
}
.process_hed h3 {
    padding-bottom: 20px;
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
    text-transform: uppercase;
}
.process_dtl_bx {
	text-align: center;
	display:block;
	padding:7px;
	background:#fff;
	box-shadow:0px 0px 12px rgb(0 0 0 / 15%);
	margin-bottom: 20px;
	border-radius: 10px;
}
.process_mg img {
	border-radius: 5px;
}
/**********************/
#other_section {
	padding: 50px 0;
	background: #eeeeee;
}
.manufacturer_dtl h4 {
	font-size: 21px;
    color: #031d40;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    margin-top: 10%;
}
.manufacturer_dtl h4:after {
    position: absolute;
    content: '';
    width: 120px;
    height: 4px;
    background: #031d40;
    display: block;
    left: 0;
    bottom: 0;
}
.banner_bx {
	padding:20px 10px;
	border:2px solid #fff;
	background:#031d40;
	box-shadow:0px 0px 12px rgb(0 0 0 / 15%);
	text-align:center;
	margin-top:15px;
	cursor:pointer;
}
.manufacture_bx ul li {
	width: 47%;
	display: inline-block;
	margin-left: 15px;
}
.banner_bx span {
	color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.25px;
	display:block;
}
.banner_bx span img {
	margin-right:15px;
	width: 40px;
}
.banner_bx:hover {
	background:#7f0303;
	border:2px solid #fff;
}
.banner_bx:hover span {
	color:#fff;
}
/**********************/
#industries_main {
	padding: 50px 0 100px 0;
}
.industries_hed h3 {
    padding-bottom: 20px;
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
    text-transform: uppercase;
}
.industries_bx {
    /* width: 140px; */
    height: 148px;
    background: url(../images/industries_icon_bg.png) top center no-repeat;
    text-align: center;
    display: block;
    line-height: 148px;
    background-size: 67%;
    margin-bottom: 40px;
}
.industry_name h5 {
	text-align: center;
	font-size: 18px;
	color: #7f0303;
	display: block;
	padding-top: 30px;
	text-transform: capitalize;
	font-weight: 600;
	letter-spacing: 0.25px;
}
.industries_bx img {
	max-width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
    padding-top: 30px;
}
.industry-slider .owl-nav button.owl-next, .industry-slider .owl-nav button.owl-prev, .industry-slider button.owl-dot {
	display:none;
}
/**********************/
#background_curve {
	background-color: #161616;
}
img.footer_curve {
	margin-top: -7%;
}
.footer_pd {
	padding: 0 0 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_list ul {
	float: left;
	width: 31%;
	margin-right: 15px;
	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: 600;
    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: #7f0303;
}
.foot_cont {
	padding-bottom:10px;
	display: inline-block;
}
.foot_cont i {
	float: left;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
    text-align: center;
    display: block;
    background: #7f0303;
    color: #fff;
}
.cont {
	padding-left:55px;
}
.cont p {
	color:#fff;
	display:block;
	font-size:14px;
	letter-spacing:0.50px;
	font-weight: 500;
    line-height: 22px;
}
.cont strong {
	display: block;
	color: #7f0303;
}
.cont span {
	display: inline-block;
}
.cont span a {
	font-weight: 500;
    letter-spacing: 0.50px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
	color:#fff;
}
.cont span a:hover {
	color: #858585;
}
.footer_copy {
	padding:10px 0;
	background:#fff;
}
.copy_dtl p {
	color: #031d40;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
	font-weight:600;
	text-align:center;
}
.social_link ul {
	margin: 15px auto 0;
	display: table;
}
/**********************/
#inner_banner {
	background: url(../images/inner_bg.jpg) center no-repeat;
	padding: 200px 0 0 0;
	text-align: center;
	display: block;
	background-size: cover;
	min-height: 350px;
	position: relative;
}
#inner_banner:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgb(3 29 64 / 75%);
}
.banner_head h1 {
	font-size: 35px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}
/**********************/
#product_sct {
	padding: 60px 0 20px 0;
}
.product_sct_lft span {
	position: relative;
	font-size: 20px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 60px;
}
.product_sct_lft span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 40px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
.product_sct_lft h3 {
    font-size: 23px;
    font-weight: 600;
    padding-top: 15px;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
}
.product_sct_para p {
    color: #787878;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 10px;
}
/**********************/
#product_descp {
	padding: 20px 0 150px 0;
}
.product_images {
	position: relative;
}
.overview_bx {
	position: absolute;
    content: '';
    top: 5%;
    left: 0;
    background: #031D3F;
    display: block;
    width: 130%;
    z-index: 2;
    height: 90%;
    padding: 30px 25px;
}
.product_detail h4 {
	font-size: 21px;
	color: #fff;
	display: block;
	padding: 0 0 7px 0;
	font-weight: 600;
	text-transform: uppercase;
	border-bottom: 3px dashed #fff;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.product_detail p {
    color: #fff;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
}
.enquire_block ul span {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    color: #7f0303;
    letter-spacing: 0.25px;
}
.enquire_block ul {
	margin:50px auto 0;
	display:table;
}
.enquire_block ul li {
	display:inline-block;
}
.enquire_block ul li a {
	display: table;
    margin: 10px auto 0;
    padding: 10px 30px;
    background-color: #031d40;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.50px;
	margin-right:10px;
}
.enquire_block ul li a:hover {
    background-color: #7f0303;
	color:#fff;
}
/**********************/
.location {
    border: 0px;
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}
#contact_sct {
	padding: 60px 0;
}
.contact_dtl h5 {
    font-weight: bold;
    letter-spacing: 0.25px;
    padding-bottom: 15px;
    font-size: 18px;
    color: #7f0303;
    text-transform: capitalize;
}
.contact_details ul li {
	letter-spacing:0.25px;
}
.contact_details ul li img {
	margin-right:15px;
	float:left;
	display:block;
	background: #031d40;
	padding: 7px;
    width: 36px;
}
.contact_details ul li span {
	color: #000;
    display: flex;
    font-size: 14px;
    letter-spacing: 0.50px;
    font-weight: 600;
    line-height: 22px;
}
.contact_details ul li a {
	font-weight: 600;
    letter-spacing: 0.50px;
    display: contents;
    font-size: 14px;
    color: #2d363d;
}
.contact_details ul li a:hover {
	color: #7f0303;
}
.location {
	border: 0px;
	width: 100%;
	height: 350px;
	margin-bottom: 20px;
}
.contact_form {
	padding-left: 30px;
}
.contact_form h3 {
	font-weight: bold;
    color: #7f0303;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.contact_form_bg {
	background: #eeeeee;
	padding: 20px 20px;
	border-radius: 10px;
}
.contact_form_bg span {
	color: #000;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 600;
    padding-bottom: 20px;
}
.contact_form_bg .form-group input {
    position: relative;
    display: block;
    width: 100%;
    color: #031d40;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    background: #fff;
    border: 1px solid transparent;
	margin-bottom: 15px;
}
.contact_form_bg .form-group textarea {
    display: block;
    width: 100%;
    padding: 12px 15px;
    color: #031d40;
    height: 70px;
    font-size: 14px;
    resize: none;
    border-radius: 10px;
	border:0px;
	margin-bottom: 20px;
    background: #fff;
}
.butn-bg {
    font-size: 16px;
    padding: 10px 40px;
    background: #7f0303;
    color: #fff;
	cursor:pointer;
	text-transform: uppercase;
	font-weight:600;
    display: block;
    margin-top: 10px;
	border:2px solid #fff;
}
.butn-bg:hover {
	border:2px solid #fff;
	color:#fff;
	font-weight:600;
	background:#031d40;
}
/**********************/
#gallery_sct {
	padding: 60px 0 150px 0;
}
/**********************/
#about_sct {
	padding: 60px 0 150px 0;
}
.about_inner_mg {
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 20px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 20px rgba(82,85,90,0.1);
    box-shadow: 0 0 20px rgb(82 85 90 / 10%);
    padding: 10px;
}
.about_inner_dtl {
	padding-left: 30px;	
	padding-top: 30px;
}
.about_sec0 span {
	position: relative;
	font-size: 20px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 60px;
}
.about_sec0 span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 40px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
.about_sec0 h1 {
    font-size: 30px;
    color: #031d40;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 15px;
}
.about_sec0 p {
    color: #787878;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 10px;
}
.about_list ul {
	padding-top: 20px;
}
.about_list ul li {
	float: left;
	display: inline-block;
	padding-right: 20px;
}
.about_list ul li span {
	position: relative;
	font-size: 17px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 30px;
}
.about_list ul li span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 20px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
/**********************/
.enquire_btn {
    right: 0;
    position: fixed;
    top: 250px;
    z-index: 10000;
}
.btm-watsap {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
}
