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

* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a, a:hover {
	text-decoration:none;
}
button:focus {
	outline:0px;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6 {
	padding:0px;
	margin:0px;
}
h1,h2,h3,h4,h5,h6,p,b,strong,ul,ol,li,a {
	margin:0px;
	padding:0px;
	font-family: 'Montserrat', sans-serif;
}
body {
	font-size:14px;
	color:#000;
	box-sizing:border-box;
	font-family: 'Montserrat', sans-serif;
	overflow-x:hidden;
}
/*********************/
body::-webkit-scrollbar-track {
	-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
	background-color:#eee;
	cursor:pointer;
}
body::-webkit-scrollbar {
	width:7px;
	cursor:pointer;
}
body::-webkit-scrollbar-thumb {
	background-color:#333;
}
body::-webkit-scrollbar-thumb:hover { 
	background-color:#000;
}
/*********************/
.container {
    width: 1225px;
    max-width: 1225px;
}
/********************/
.header_tp {
	position:relative;
	background:#000;
	height:60px;
	border-bottom: 4px solid #ffc300;
}
.header-scrolled .header_tp {
	height:40px;
	-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;
}
.header-scrolled .header_tp ul {
	padding: 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;
}
.header_tp:before {
	position:absolute;
	content:'';
	top:0;
	left:-44px;
	width:0px;
	border-top:60px solid #fff;
	border-right:60px solid #000;
	transform:rotate(-90deg);
	-webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
}
.header-scrolled .header_tp:before {
	border-top:40px solid #fff;
	border-right:40px solid #c61831;
	-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;
}
.header_tp:after {
	position:absolute;
	content:'';
	top:0;
	left:0;
	width:1000px;
	height:60px;
	border-bottom:4px solid #ffc300;
	background:#000;
	z-index:-1;
}
.header-scrolled .header_tp:after {
	height:40px;
	-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;
}
.header_tp ul {
	float: right;
	padding:10px 0;
}
.header_tp_lft ul li {
	display: inline-block;
	padding:6px 20px;
	border-right:2px solid #fff;
}
.header_tp_lft ul li:last-child {
	border-right:0px;
}
.header_tp_lft ul li a {
	color: #fff;
    display: block;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.50px;
	font-family: 'Montserrat', sans-serif;
}
.header_tp_lft ul li a:hover {
	color: #ffc300;
}
.header_tp_lft ul li:hover i {
	color: #ffc300;
}
.header_tp_lft ul li a i {
    color: #fff;
    font-size: 16px;
    padding-right: 7px;
}
/**********************/
.fixed-top {
	position:relative;
	top:0px;
	display:block;
	background:#fff;
	box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
}
.logo {
	display: contents;
    float: left;
}
.header_menu {
    display: flex;
}
#header .logo img {
	/* width:75%; */
	-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: 10px;
}
.header-scrolled .logo img {
	width:70%!important;
}
.main-nav {
	margin: 20px 0 14px 0;
	float:right;
}
.header-scrolled .main-nav {
	margin:15px 0 0 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;
}
.main-nav > ul > li {
	position: relative;
	float: left;
}
.main-nav a {
	color: #262626;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    transition: all 200ms linear;
    position: relative;
    display: inline-block;
	font-size: 15px;
	padding:5px 20px;
	font-family: 'Montserrat', sans-serif;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #c61831;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	width:250px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: ease all 0.3s;
	padding: 10px;
    background-color: rgba(255,255,255,1);
	box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    border: none;
    border-radius: 3px;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}
.main-nav .drop-down ul li a {
	padding: 2px 5px;
    color: #c61831;
    border-radius: 2px;
    transition: all 200ms linear;
	font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.50px;
    font-size: 13px;
    text-transform: uppercase;
	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: #f71728;
}
.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;
}
.lst-nav {
	display:none;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: #c61831;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #fff;
	padding: 5px 15px;
	font-weight: normal;
    font-size: 13px;
    letter-spacing: 0px;
    text-transform: uppercase;
    position: relative;
	font-family: 'Montserrat', sans-serif;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #f71728;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #c61831;
	font-size:30px;
}
.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;
}
/************************/
#carousel .carousel-control {
	background:none;
	top:44%;
	opacity:1;
}
#carousel .carousel-control {
	color:#fff;
	background: #c61831;
	width: 40px;
    height: 50px;
	z-index:121;
	line-height:55px;
	text-align:center;
	position:absolute;
}
.carousel-control-left, .carousel-control-right span {
	font-size:25px;
}
.carousel-control-left, .carousel-control-right {
	width:20px;
}
.carousel-control-right {
	right:0px;
}
/************************/
#banner_bottom {
	background:url(../images/banner-btm-bg.png) no-repeat;
	margin-top:-60px;
	background-size: 100%;
    position: relative;
    height: 70px;
    z-index: 99;
}
.banner_bx {
	padding:25px 15px;
	border:1px solid #fff;
	transition:all 0.2s ease;
	background:#fff;
	box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
	text-align:center;
	margin-top:15px;
	cursor:pointer;
}
.banner_bx span {
    color: #c61831;
    font-size: 17px;
    font-family: 'FontAwesome';
    font-weight: 600;
    display: block;
}
.banner_bx span i {
	margin-right:10px;
}
.banner_bx:hover {
	background:#c61831;
	margin-top:10px;
	border: none;
	/* border:1px solid #ffc300; */
}
.banner_bx:hover span {
	color:#fff;
}
.ml_lft {
	margin-left:10rem;
}
/************************/
#Products {
	padding:60px 0;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    z-index: 1;
    position: relative;
}



.hm_product_hed.two {
	margin-top: 60px;
}

.hm_product_hed.three {
	margin-top: 60px;
}


.hm_product_hed h2 {
	text-align:center;
	font-size:25px;
	color:#c61831;
	letter-spacing:0.50px;
	position:relative;
	padding-top:15px;
	padding-bottom:10px;
}
.hm_product_hed h2:before {
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	width:20px;
	height:5px;
	background:#c61831;
	margin:0 auto;
	display:table;
}
.hm_product_hed h2:after {
	position:absolute;
	content:'';
	top:0;
	left:40px;
	right:0;
	width:20px;
	height:5px;
	background:#ffc300;
	margin:0 auto;
	display:table;
}
.hm_product_hed span {
	padding:0 12% 0;
	text-align:center;
	font-size:14px;
	display:block;
	color: #c61831;
}
.hm_product_hed {
	padding-bottom:25px;
}
.prd_mg img {
	border-radius: 10px 10px 0 0;
	border:2px solid #dddfe2;
}
.prd_dtl {
	padding:14px 0;
	background:#fff;
	position:relative;
	z-index:1;
	text-align:center;
	margin-top:10px;
	border-top: 2px solid #dddfe2;
	border-left: 2px solid #dddfe2;
	border-right: 2px solid #dddfe2;
	border-bottom:3px solid #c61831;
    border-radius: 5px;
}
.hm_prd_dtl {
	cursor:pointer;
}
.hm_prd_dtl:hover .prd_dtl {
	border-bottom:3px solid #038f0d;
}
.prd_dtl h6 {
	text-align:center;
	color:#c61831;
	font-size:16px;
	padding-bottom:10px;
}
.prd_dtl p {
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	color:#262626;
	padding-bottom:20px;
	text-align: justify;
	/* letter-spacing:0.25px; */
}
.prd_dtl .text-center{
	padding-bottom: 6px;
}
.pro-content {
    /* height: 171px; */
    padding: 0 7px;
}
.prd_dtl a {
	font-size:14px;
	color:#c61831;
	font-weight:bold;
	font-family: 'Montserrat', sans-serif;
	padding:8px 15px;
	background:#fff;
}
.hm_prd_dtl:hover .prd_dtl a {
	background:#038f0d;
	color:#fff;
	font-weight:normal;
}
.carousel-wrap {
	position: relative;
}
.carousel-wrap .owl-next span {
	position: absolute;
    top: 42%;
    right: -15px;
    color: #fff;
    background: #c61831;
    width: 50px;
    height: 50px;
	border-radius:50%;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
}
.carousel-wrap .owl-prev span {
	position: absolute;
    top: 42%;
	border-radius:50%;
    left: -15px;
    color: #fff;
    background: #c61831;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
}
.carousel-wrap .owl-prev span {
	-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
.carousel-wrap .owl-next span {
	-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
.carousel-wrap:hover .owl-prev span {
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
.carousel-wrap:hover .owl-next span {
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
/************************/
#about {
	padding:80px 0;
	background:#e2e6ef;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    z-index: 1;
    position: relative;
}
.hm_abt_sec {
	position:relative;
	border:7px solid #fff;
	padding:40px 40px;
}
.hm_abt_hed {
	position:absolute;
	content:'';
	background:#fff;
	margin-top:-70px;
	padding:8px 30px;
}
.hm_abt_hed h1 {
	font-size:22px;
	color:#c61831;
	font-weight:bold;
	letter-spacing:1px;
}
.hm_abt_para span {
	color:#c61831;
	font-size:18px;
	font-weight:bold;
	letter-spacing:1px;
	padding-bottom:5px;
	display:block;
	margin-bottom:15px;
	position:relative;
}
.hm_abt_para span:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	right:0;
	width:20px;
	height:5px;
	background:#c61831;
}
.hm_abt_para span:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	right:0;
	width:20px;
	height:5px;
	background:#ffc300;
}
.hm_abt_para p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #262626;
	line-height:22px;
    padding-bottom: 20px;
	letter-spacing:0.25px;
}
.hm_abt_btn {
	padding:10px 30px;
	background:#c61831;
	color:#fff;
	font-size:14px;
	margin-top:5px;
	display:inline-block;
	border-bottom:4px solid #f71728;
}
.hm_abt_btn:hover {
	background:#f71728;
	color:#c61831;
	font-weight:bold;
	border-bottom:4px solid #c61831;
}
.abt_tp_br::before {
	position:absolute;
	content:'';
	top:-7px;
	left:-7px;
	width:7px;
	height:60px;
	background:#ffc300;
}
.abt_tp_br::after {
	position:absolute;
	content:'';
	top:-7px;
	left:-7px;
	width:60px;
	height:7px;
	background:#ffc300;
}
.abt_bt_br::before {
	position:absolute;
	content:'';
	bottom:-7px;
	right:-7px;
	width:7px;
	height:60px;
	background:#ffc300;
}
.abt_bt_br::after {
	position:absolute;
	content:'';
	bottom:-7px;
	right:-7px;
	width:60px;
	height:7px;
	background:#ffc300;
}
.hm_about_mg {
	margin-top:18px;
}
.hm_about_mg img {
	border-radius:10px;
}
/************************/
#hm_infra_main {
	padding:60px 0;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    z-index: 1;
    position: relative;
}
.hm_infra_hed h2 {
	text-align:center;
	font-size:25px;
	color:#f71728;
	letter-spacing:0.50px;
	position:relative;
	padding-top:15px;
	padding-bottom:10px;
}
.hm_infra_hed h2:before {
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	width:20px;
	height:5px;
	background:#c61831;
	margin:0 auto;
	display:table;
}
.hm_infra_hed h2:after {
	position:absolute;
	content:'';
	top:0;
	left:40px;
	right:0;
	width:20px;
	height:5px;
	background:#f71728;
	margin:0 auto;
	display:table;
}
.hm_infra_hed span {
	padding:0 12% 0;
	letter-spacing:0.25px;
	text-align:center;
	font-size:14px;
	display:block;
	color:#c61831;
}
.hm_infra_hed {
	padding-bottom:25px;
}
.hm_infra_bx img {
	border-radius:10px;
	margin-bottom:20px;
}
/************************/
#footer_top_main {
	padding:50px 0;
	background:#ffc300;
}
.footer_bx span {
    float: left;
    font-size: 28px;
    margin-top: 0px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 70px;
    height: 70px;
	display:block;
    line-height: 70px;
    border-radius: 100%;
}
.footer_bx .foot_add {
    margin-left: 90px;
}
.foot_add h5 {
	font-size:18px;
	color:#fff;
	padding-bottom:10px;
	margin-bottom:10px;
	letter-spacing:0.50px;
	position:relative;
}
.foot_add h5:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20px;
	height:3px;
	background:#c61831;
	margin:0 auto;
	display:table;
}
.foot_add h5:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	width:20px;
	height:3px;
	background:#ffc300;
	margin:0 auto;
	display:table;
}
.foot_add p {
	font-size:13px;
	color:#fff;
	padding-bottom:5px;
	letter-spacing:0.50px;
}
.foot_add p a {
	font-size:14px;
	color:#fff;
	padding-bottom:5px;
	letter-spacing:0.50px;
}
.foot_add p a:hover {
	color:#c61831;
}
.foot_nav_lst ul li a:hover {
	color:#ffc300;
}
/************************/
#footer_btm_main {
	padding:40px 0 20px 0;
	background:#000;
	border-top: 4px solid #ffc300;
}
.footer_nav h5 {
	font-size:18px;
	color:#fff;
	padding-bottom:5px;
	margin-bottom:15px;
	letter-spacing:0.50px;
	position:relative;
}
.footer_nav h5:before {
	position:absolute;
	content:'';
	bottom:0;
	left:0;
	width:20px;
	height:2px;
	background:#fff;
	margin:0 auto;
	display:table;
}
.footer_nav h5:after {
	position:absolute;
	content:'';
	bottom:0;
	left:20px;
	width:20px;
	height:2px;
	background:#ffc300;
	margin:0 auto;
	display:table;
}
.foot_nav_lst ul li a {
	font-size:14px;
	color:#fff;
	letter-spacing:0.25px;
}
.foot_lst {
	border-top:1px solid #636363;
	margin-top:30px;
}
.foot_lst h6 {
	color: #fff;
	text-align:center;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
    padding-top: 25px;
}
.foot_lst h6 a {
	color:#ffc300;
	font-weight:bold;
	letter-spacing:1px;
}
/************************/
#inner-product-banner {
	background:url(../images/product-banner.jpg);
	background-position:center;
	background-repeat:no-repeat;
	min-height: 170px;
    padding: 35px 0 15px;
}
.inner-prd-hed h2 span {
	text-align: center;
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #f71728;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 30px;
	padding-bottom:5px;
}
.inner-prd-hed ul {
	margin:0 auto;
	display:table;
}
.inner-prd-hed ul li {
	display:inline-block;
    padding:0 15px 0 0;
}
.inner-prd-hed ul li a {
	color: #c61831;
    letter-spacing: 0.50px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}
.inner-prd-hed ul li a i {
	margin-left:5px;
}
.inner-prd-hed ul li span {
	color:#f71728;
    letter-spacing: 0.50px;
    font-size: 16px;
}
.inner-prd-hed ul li a:hover {
	color:#f71728;
}
/************************/
#inner-product-section {
	padding:60px 0;
}
.inn-prd_dtl {
	padding:15px 5px;
	background:#fff;
	position:relative;
	z-index:1;
	text-align:center;
	margin-top:10px;
	border-top: 2px solid #dddfe2;
	border-left: 2px solid #dddfe2;
	border-right: 2px solid #dddfe2;
	border-bottom:3px solid #f71728;
    border-radius: 5px;
}
.inn-prd_dtl {
	cursor:pointer;
}
.inn-prd_dtl:hover .prd_dtl {
	border-bottom:3px solid #f71728;
}
.inn-prd_dtl h6 {
	text-align:center;
	color:#f71728;
	font-size:16px;
	padding-bottom:10px;
}
.inn-prd_dtl p {
	font-family: 'Montserrat', sans-serif;
	font-size:13px;
	color:#c61831;
	padding-bottom:10px;
	letter-spacing:0.25px;
}
.inn-prd_dtl a {
	font-size:13px;
	color:#f71728;
	font-weight:bold;
	font-family: 'Montserrat', sans-serif;
	padding:0px 15px;
	letter-spacing:1px;
}
.hm_prd_dtl:hover a {
	color:#000;
}
.hm_prd_dtl:hover .inn-prd_dtl {
	border-bottom:3px solid #f71728;
	background:#e2e6ef;
}
.inn_md {
	margin-bottom:25px;
}
.inner-prdoct-lft h5 {
	font-size: 18px;
    color: #fff;
    padding:5px;
	text-align:center;
    letter-spacing: 0.50px;
	margin-bottom:15px;
	background:#f71728;
	padding:10px;
}
.inner-prdoct-lft ul li a {
	padding:7px 10px;
	background:#e2e6ef;
	color: #c61831;
	display:flex;
	font-size:13px;
	border-bottom:1px solid #f71728;
	margin-bottom:5px;
	letter-spacing:0.25px;
}
.inner-prdoct-lft ul li a:hover {
	color:#fff;
	background:#c61831;
}
.inner-prdoct-lft ul li a:hover i {
	color:#fff;
}
.inner-prdoct-lft ul li a i {
	margin-right: 5px;
    margin-top: 3px;
	color:#c61831;
}
.inn-product-bx 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;
    margin-bottom: 30px;
    background: #f7f7f7;
}
.inn-product-hed h1 {
	font-size: 28px;
    color: #f71728;
	padding-bottom:20px;
	padding-top:10px;
	position:relative;
    letter-spacing: 1px;
}
.inn-product-hed h1:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 20px;
    height: 5px;
    background: #c61831;
}
.inn-product-hed h1:after {
    position: absolute;
    content: '';
    top: 0;
    left: 20px;
    right: 0;
    width: 20px;
    height: 5px;
    background: #f71728;
}
.inn-prodcut-detail h4 {
	font-size: 21px;
    color: #f71728;
    padding-bottom: 10px;
    letter-spacing: 0.50px;
    position: relative;
}
span.top-brd {
    width: 50px;
    height: 1px;
    margin-bottom: 2px;
    border-radius: 50px;
    background: #c61831;
	display:block;
}
span.btm-brd {
    width: 25px;
    height: 1px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: #c61831;
	display:block;
}
.product-para p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #c61831;
    line-height: 22px;
	letter-spacing:0.25px;
    padding-bottom: 15px;
}
.product-para p b {
	color: #c61831;
}
.product-para h5 {
	font-size: 18px;
    color: #f71728;
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 0.50px;
    position: relative;
}
.product-para h5:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 20px;
    height: 3px;
    background: #c61831;
    margin: 0 auto;
    display: table;
}
.product-para h5:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 20px;
    width: 20px;
    height: 3px;
    background: #f71728;
    margin: 0 auto;
    display: table;
}
.special-para h5 {
	font-size: 18px;
    color: #f71728;
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 0.50px;
    position: relative;
}
.special-para h5:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 20px;
    height: 3px;
    background: #c61831;
    margin: 0 auto;
    display: table;
}
.special-para h5:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 20px;
    width: 20px;
    height: 3px;
    background: #f71728;
    margin: 0 auto;
    display: table;
}
.special-para {
    padding: 30px 20px;
	background: #fff;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
}
.special-para ul li {
    list-style: none;
    padding: 5px 0;
    color: #c61831;
    font-size: 15px;
    line-height: 28px;
    border-bottom: 1px dotted #DDD;
    font-weight: 500;
	text-transform:capitalize;
	letter-spacing:0.25px;
}
/************************/
#contact-page-section {
	padding: 60px 0;
}
.contact-hed {
	margin-bottom:30px;
}
.contact-hed h2 {
	font-size: 25px;
    color: #f71728;
	padding-bottom:20px;
	padding-top:10px;
	position:relative;
    letter-spacing: 1px;
}
.contact-hed h2:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 20px;
    height: 5px;
    background: #c61831;
}
.contact-hed h2:after {
    position: absolute;
    content: '';
    top: 0;
    left: 20px;
    right: 0;
    width: 20px;
    height: 5px;
    background: #f71728;
}
.contact-bx {
	background-color: #fff;
    padding: 20px;
    height: 270px;
    -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%);
}
.contact-mg {
	display:flow-root;
}
.contact-dtl h4 {
	font-size: 20px;
    color: #c61831;
	text-align:center;
    padding-bottom: 10px;
    letter-spacing: 0.50px;
}
.contact-mg span {
    margin-top: 0px;
    background: #fff;
    text-align: center;
    width: 70px;
	float:right;
    height: 70px;
	margin-bottom:10px;
    display: block;
    line-height: 70px;
    border-radius: 100%;
	box-shadow: 0 5px 12px rgb(0 0 0 / 15%);
}
.contact-mg span img {
	width:35px;
	height:auto;
}
.contact-dtl span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #c61831;
	display:block;
	text-align:center;
    line-height: 22px;
    letter-spacing: 0.25px;
}
.contact-dtl span a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #c61831;
	display:block;
	text-align:center;
    line-height: 22px;
    letter-spacing: 0.50px;
}
.contact-dtl span a:hover {
	color:#c61831;
}
.contact-dtl ul {
	margin:10px auto;
	display:table;
}
.contact-dtl ul li {
	display:inline-block;
	padding:0 5px;
}
.rw-md {
	margin-top:40px;
}
.contact-form {
	background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 40px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 40px rgba(82,85,90,0.1);
    box-shadow: 0 0 40px rgb(82 85 90 / 10%);
    padding: 25px;
}
.contact-form .form-group input[type="text"], .contact-form .form-group input[type="password"], .contact-form .form-group input[type="tel"], .contact-form .form-group input[type="email"], .contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    color: #ea0101;
    line-height: 26px;
    padding: 10px 28px;
    height: 60px;
    font-size: 16px;
    border-radius: 2px;
    background: #f3f5f9;
    border: 1px solid transparent;
}
.contact-form .form-group input::placeholder {
	color: #c61831;
	opacity: 1; 
	font-size:14px;
}
.contact-form .form-group textarea::placeholder {
	color: #c61831;
	opacity: 1; 
	font-size:14px;
}
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 28px;
    color: #ee2324;
    height: 120px;
    font-size: 14px;
    resize: none;
    border-radius: 2px;
	border:0px;
    background: #f3f5f9;
}
.butn-bg {
	font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 25px;
    background: #c61831;
    color: #fff;
	cursor:pointer;
    width:100%;
	line-height:40px;
    display: block;
	border:2px solid #fff;
}
.butn-bg:hover {
	border:2px solid #f71728;
	color:#fff;
	background:#f71728;
}
/************************/
.gallery {
	padding: 10px;
    margin-bottom: 5px;
	border: 2px solid #d2d2d2;
}
.gallery-box a span {
	color: #f71728;
    font-size: 15px;
	text-align:center;
    display: block;
}
.gallery-box:hover span {
	color:#c61831;
	text-decoration:underline;
}
.gallery-box {
	margin-bottom:25px;
}
.gallery img {
	margin:0 auto;
	display:table;
}
/************************/
.inner-about-hed h2 {
	font-size: 25px;
    color: #f71728;
	padding-bottom:20px;
	padding-top:10px;
	position:relative;
    letter-spacing: 1px;
}
.inner-about-hed h2:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 20px;
    height: 5px;
    background: #c61831;
}
.inner-about-hed h2:after {
    position: absolute;
    content: '';
    top: 0;
    left: 20px;
    right: 0;
    width: 20px;
    height: 5px;
    background: #f71728;
}
.inner-about-para p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #c61831;
    line-height: 22px;
    padding-bottom: 20px;
    letter-spacing: 0.25px;
}
.inner-about-para ul {
	padding-bottom:25px;
}
.inner-about-para ul li span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #c61831;
    line-height: 26px;
    letter-spacing: 0.25px;
}
.inner-abt-bx img {
	-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;
	margin-bottom:20px;
}
/************************/
.sidebar-contact{
	position:fixed;
	top:50%;
	right:-350px;
	transform:translateY(-50%);
	width:350px;
	height:100vh;
	padding:40px 40px;
	background:#e2e6ef;
	/* box-shadow: 0 20px 50px rgba(0,0,0,.5); */
	box-sizing:border-box;
	transition:0.5s ease;
	-webkit-transition:0.5s ease;
	-moz-transition:0.5s ease;
	z-index:1111;
}
.toggle i {
	float:right;
	width:45px;
	height:45px;
	line-height:45px;
	background:#c61831;
	color:#fff;
	font-size:20px;
	border-radius:50%;
	display:block;
	cursor:pointer;
	margin-top:-20px;
	margin-right:-10px;
	text-align:center;
}
.enquiry_form {
	padding-top:30px;
}
.enquiry_form h2 {
	text-align: center;
    font-size: 30px;
    color: #c61831;
	font-weight:bold;
    letter-spacing: 0.50px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
.enquiry_form span {
	color: #f71728;
	text-transform:capitalize;
    font-size: 14px;
    font-weight: bold;
	text-align:center;
    padding-bottom: 5px;
    display: block;
    margin-bottom: 15px;
}
.sidebar-contact.active {
	right:0;
}
.sidebar-contact textarea, 
.sidebar-contact input {
	position: relative;
    display: block;
    width: 100%;
    color: #ea0101;
    line-height: 26px;
    padding: 10px 10px;
    font-size: 13px;
	margin-bottom:10px;
    border-radius: 2px;
    background: #f3f5f9;
    border: 1px solid transparent;
}
.sidebar-contact textarea {
	height:90px; 
	resize:none;
}
.sidebar-contact .butn-bg0:hover {
    color: #fff;
    background: #f71728;
}
.sidebar-contact .butn-bg0 {
	font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 25px;
    background: #c61831;
    color: #fff;
    cursor: pointer;
    width: 100%;
	border:0px;
    display: block;
}
.toggle img {
	position:absolute;
	text-align:center;
	cursor:pointer;
	top:70%;
	left:-40px;
}
.enq_dtl ul {
	margin: auto;
	display:table;
	margin-top:20px;
}
.enq_dtl ul li a {
	color: #c61831;
    display: block;
    text-decoration: none;
    font-size: 14px;
	font-weight:bold;
	padding-bottom:5px;
    letter-spacing: 0.50px;
	font-family: 'Montserrat', sans-serif;
}
.enq_dtl ul li a:hover {
	color: #f71728;
}
.enq_dtl ul li a i {
    color: #fff;
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	background:#f71728;
    font-size: 14px;
    margin-right: 7px;
}
/************************/
.btm-watsap {
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 99;
}
.enq_dtl {
	padding-top: 20px;
}











.hm_testimonial_section {

}


.hm_prd_dtl {
text-align: center;
}


.hm_prd_dtl h1.test-hed-tex {
	font-size: 20px; 
	font-weight: bold;
	color: red;
	padding: 20px 0px;
}
.hm_prd_dtl .testm-bg img {
    background-size: cover;
    width: 200px!important;
    margin: 0px auto;
    border-radius: 100%;
}

div#hm_testimonial_section {
    margin: 35px 0px 0px;
}


.foot_nav_lst ul li {
	padding: 10px 0px;
	border-bottom: 1px dashed #fff
}


.prd_mg img {
    width: 281px !important;
    margin: auto;
}


/* CONT FORM */

.contact-form-area .contact-info {
    margin-bottom: 30px;
}
.contact-form-area .contact-info h2 {
    font-size: 30px;
    margin: 0 0 10px;
	color: #262626;
}

.address-area ul {
    border: 1px solid #c61831;
    margin: 0;
    list-style: none;
    padding: 0;
}
.address-area ul li {
    background: #000;
    border-bottom: 1px solid #fff;
    padding: 21px 25px;
    position: relative;
}
.address-area ul li i {
    font-size: 24px;
    position: absolute;
    right: 30px;
    z-index: 1;
}
.address-area ul li h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.address-area p {
    margin: 0;
    color: #fff;
}
.address-area p a {
    color: #fff;
}
.address-area ul > li i {
    color: #fff;
}
.address-area ul li .contact-social {
    border: medium none;
    margin: 18px 0 0;
}
.address-area ul li .contact-social li {
    border: medium none;
    display: inline-block;
    margin-right: 8px;
    padding: 0;
}
.address-area ul li .contact-social li a {
    border: 1px solid #fff;
}
.address-area ul li .contact-social li a {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    width: 35px;
    border-radius: 50%;
}
.address-area ul li .contact-social li a i {
    color: #fff;
}
.contact-social li a i {
    position: relative;
    right: 0;
    font-size: 16px;
}
.contact-form-area input.sbmt-btn {
    background-color: #c61831;
    border: medium none transparent;
    border-radius: 3px;
    font-size: 16px;
    width: 160px;
    transition: all .5s;
}
.contact-form-area input.sbmt-btn:hover {
    background-color: #ffc300;
    transition: all .5s;
}
input[value="Get in touch"] { 
	color: #fff;
    font-size: 18px !important;
    font-weight: 600;
    padding: 11px 0;
    font-family: sans-serif;
}
.mb-31 {
    margin-bottom: 31px;
}
.form-group {
    margin-bottom: 31px;
}

.dis-flex{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.dis-flex li{
	padding-left: 11px;
}
/* .partner-bg img {
    width: 64px !important;
} */
.battery-info h6 {
    color: #262626;
    padding-top: 16px;
    font-family: 'FontAwesome';
}
.navbar {
    padding: 0 2rem;
}
.partner-bg {
    padding: 0 14px;
}
.brand-logo{
	padding-bottom: 39px;
}
.cu-lg-wdth{
	padding-bottom:8px;
}
.battery-infoo{
	margin-bottom:30px;
	box-shadow: 0px 3px 10px;
    padding: 30px;
    min-height: 345px;
}
.ts-img{
	width:80px!important;
	border-radius:50%;
	margin:0 auto;
}
.str-img{
	width:100px!important;
	margin:0 auto
}
.battery-infoo img{
	border: 1px solid;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
}
.bg-overlayy {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("banner4.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 250px;
    padding-top: 50px;
}
.cu-glry{
	margin-bottom:30px;
}
.cu-whte{
	color:#fff
}
.whatsup img {
    width: 56px;
}
.whatsup {
    position: fixed;
    right: 10px;
    width: 50px;
    bottom: 90px;
    z-index: 9999;
}
#callme1 {
    position: fixed;
    right: 10px;
    bottom: 150px;
    width: 60px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
#callme1 img{
	width:70px
}
.mb-cl{
	background-color:#000;
	text-align:center;
}
.mb-cl a{
	color:#fff;
}
@media(max-width:768px)
{
	.bg-overlayy {
		height:auto;
		padding-bottom:50px;
	}
	.bg-overlayy h1{
		font-size:22px;
	}
}
#enu-st{
	background-color:#000;
	color:#fff;
	padding:10px 18px;
}
@media(max-width:767px)
{
	.mb-mrgn-btm1{
		margin-bottom:60px;
	}
	.mb-mrgn-btm{
		margin-bottom:30px;
	}
}
@media(max-width:500px)
{
	.cu-lg-wdth{
		width:180px;
	}
	.dis-flex{
		display:block;
	}
}