body{
	color: #000000;
	font-weight: 400;
	background: #fafafa;
	font-family: Verdana, Tahoma;
	}
h1,h2, h3, h4,h5, h6{
	color: #000000;
	font-family: Verdana, Tahoma;
	}
a{
	color: #ffffff;
	transition: .3s;
	font-family: Verdana, Tahoma;
	}
a:hover, a:active, a:focus{
	color: #ffdd00;
	outline: none;
	text-decoration: none;
	font-family: Verdana, Tahoma;
	}
a.txt{
	color: #000000;
	text-decoration: underline;
	font-family: Verdana, Tahoma;
	}
a.txt:hover, a.txt:active, a.txt:focus{
	color: #ee1c25;
	text-decoration: underline;
	font-family: Verdana, Tahoma;
	}
p{text-indent: 25px;}

.justify{text-align: justify;}
.monospace{font-family: Courier, monospace;}
.btn.btn-custom{
	padding: 10px 30px 12px 30px;
	text-align: center; 
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	background: #ffdd00;
	border: none;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffdd00;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.btn.btn-custom:hover{
	color: #000000;
	background: #ffdd00;
	box-shadow: inset 200px 0 0 0 #ffdd00;
	}
.btn:focus, .form-control:focus{
	box-shadow: none;
	}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after{
	font-size: inherit;
	margin-left: 0;
	}
/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ee1c25;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
	-o-transition: opacity .3s ease-out, visibility 0s linear .3s;
	transition: opacity .3s ease-out, visibility 0s linear .3s;
	z-index: 999;
	}
#loader.show{
	-webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
	-o-transition: opacity .6s ease-out, visibility 0s linear 0s;
	transition: opacity .6s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
	}
#loader .loader{
	position: relative;
	width: 45px;
	height: 45px;
	border: 5px solid #ffdd00;
	border-top: 5px solid #ffffff;
	border-radius: 50%;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	}
@-webkit-keyframes spin{
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
	}
@keyframes spin{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
	}
.back-to-footer{
	position: fixed;
	display: none;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 22px;
	right: 15px;
	top: 70px;
	transition: 0.5s;
	background: #ee1c25;
	border-radius: 44px;
	z-index: 9;
	}
.back-to-footer i{
	color: #ffffff;
	padding-top: 10px;
	}
.back-to-footer:hover{
	background: #ffdd00;
	}
.back-to-top{
	position: fixed;
	display: none;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 22px;
	right: 15px;
	bottom: 70px;
	transition: .5s;
	background: #ee1c25;
	border-radius: 44px;
	z-index: 9;
	}
.back-to-top i{
	color: #ffffff;
	padding-top: 10px;
	}
.back-to-top:hover{
	background: #ffdd00;
	}
/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar{
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
	background: #ee1c25;
	}
.top-bar .top-bar-item{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	}
.top-bar .top-bar-icon{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffdd00;
	border-radius: 40px;
	}
.top-bar .top-bar-icon i{
	margin: 0;
	color: #ee1c25;
	font-size: 16px;
	}
.top-bar .top-bar-text{
	padding-left: 2px;
	}
.top-bar .top-bar-text h3{
	margin: 0 0 5px 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	}
.top-bar .top-bar-text p{
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	}
@media (max-width: 991.98px){
	.top-bar .logo{
		text-align: center;
	}
	}
.services-flex{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	}
.services-flex-item{
	flex: 0 0 calc(33% - 10px);
	text-align: center;
	padding: 10px 20px 30px 20px;
	margin: 5px;
	border: 1px solid rgb(176, 176, 176);
	border-radius: 5px;
	}
@media only screen and (max-width : 991px){
	.services-flex-item{
		flex: 0 0 calc(49% - 10px);
		}
	}
@media only screen and (max-width : 767px){
	.services-flex-item{
		flex: 0 0 100%;
		}
	}
.products-flex{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	}
.products-flex-item{
	flex: 0 0 calc(49% - 10px);
	text-align: center;
	padding: 10px 20px 75px 20px;
	margin: 5px;
	border: 1px solid rgb(176, 176, 176);
	border-radius: 5px;
	position: relative;
	}
@media only screen and (max-width : 767px){
	.products-flex-item{
		flex: 0 0 100%;
		}
	}
.services-flex-item h3, .products-flex-item h3{
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	}
.services-flex-item p, .products-flex-item p{
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	text-align: justify;
	}
.products .products-flex-item .price{
	position: absolute;
	bottom: 15px;
	font-family: Verdana, Tahoma;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	padding-bottom: 0px;
	}

.price_calc{
	font-style: italic;
	font-weight: normal;
	padding-left: 25px;
	cursor: pointer;
	}
.price_calc:hover{
	color: #ee1c25;
	}
.prod_img{
	height: 125px;
	padding-bottom: 15px;
	object-fit: contain;
	}
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar{
	position: relative;
	background: #ee1c25;
	}
.nav-bar.nav-sticky{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
	z-index: 999;
	}
.nav-bar .navbar{
	padding: 20px 0;
	background: #ee1c25 !important;
	transition: .3s;
	}
.nav-bar.nav-sticky .navbar{
	padding: 5px 0;
	}
.navbar-dark .navbar-nav .nav-link{
	color: #ffffff;
	padding-right: 15px;
	padding-bottom: 1px;
	font-weight: 500;
	letter-spacing: 1px;
	font-family: Verdana, Tahoma;
	}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active{
	color: #ffdd00;
	font-family: Verdana, Tahoma;
	}
.navbar-dark .navbar-nav .nav-link-active,
.navbar-dark .navbar-nav .nav-link-active:focus,
.navbar-dark .navbar-nav .nav-link-active:hover,
.navbar-dark .navbar-nav .nav-link-active.active{
	color: #ffdd00;
	font-family: Verdana, Tahoma;
	}
.nav-bar .dropdown-menu{
	margin-top: 0;
	border: 0;
	border-radius: 0;
	background: #f8f9fa;
	}
.nav-bar .btn.btn-custom{
	color: #000000;
	background: #ffffff;
	box-shadow: inset 0 0 0 0 #ffdd00;
	font-family: Verdana, Tahoma;
	font-weight: bold;
	}
.nav-bar .btn:hover{
	color: #ee1c25;
	background: #ffdd00;
	box-shadow: inset 200px 0 0 0 #ffdd00;
	font-family: Verdana, Tahoma;
	font-weight: bold;
	}
@media (min-width: 992px){
	.nav-bar .navbar-brand{
		display: none;
	}
	}
@media (max-width: 991.98px){
	.navbar-dark .navbar-nav .nav-link,
	.navbar-dark .navbar-nav .nav-link:focus,
	.navbar-dark .navbar-nav .nav-link:hover,
	.navbar-dark .navbar-nav .nav-link.active{
		padding: 5px 0;
	}
	.nav-bar .dropdown-menu{
		box-shadow: none;
	}
	.nav-bar .btn{
		display: none;
	}
	}

.nav-alt-aa{
	display: table;
	position: relative;
	top: -5px;
	}
.nav-alt-ab{
	width: 35px;
	}
@media (max-width: 991.98px){
	.nav-alt-aa{
		left: -15px;
		}
	.nav-alt-ab{
		position: relative;
		left: 135px;
		}
	.nav-alt-ca{
		padding-right: 15px;
		}
	.nav-alt-cb{
		padding-right: 15px;
		}
	.nav-alt-cc{
		padding-right: 15px;
		}
	}
/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel{
	position: relative;
	width: 100%;
	max-height: 500px;
	background: #ffffff;
	}
.carousel .container-fluid{
	padding: 0;
	}
.carousel .carousel-item{
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	vertical-align: middle;
	}
.carousel .carousel-item .pageof{
	position:fixed;
	top:5px;
	left:5px;
	z-index:9999;
	opacity: 0.5;
	font-family: "Palatino Linotype"; 
	font-size: 14px;
	}
.carousel .carousel-img{
	position: relative;
	width: 100%;
	height: 100%;
	text-align: right;
	overflow: hidden;
	}
.carousel .carousel-img::after{
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.00);
	z-index: 1;
	}
.carousel .carousel-img img{
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	}
@media (max-width: 991.98px){
	.carousel, .carousel .carousel-item, .carousel .carousel-img{
		height: 500px;
	}
	}
.carousel .carousel-text{
	position: absolute;
	max-width: 992px;
	margin-bottom: 0;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
	}
.slide1text1{
	width: 100%;
	color: #000000;
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 1px;
	}
.slide1text2{
	width: 100%;
	height: 30%;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 20px;
	}
.slide1button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide2text1{
	width: 100%;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 20px;
	}
.slide2text2{
	width: 100%;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 5px;
	}
.slide2button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide3text1{
	width: 100%;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 5px;
	}
.slide3text2{
	width: 100%;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	padding: 0 20px;
	}
.slide3button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide4text1{
	width: 100%;
	max-width: 500px;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 10px;
	}
.slide4text2{
	width: 100%;
	max-width: 500px;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	}
.slide4button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide5text1{
	width: 100%;
	max-width: 700px;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 10px;
	}
.slide5text2{
	width: 100%;
	max-width: 700px;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 20px;
	}
.slide5button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide6text1{
	width: 100%;
	max-width: 700px;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 10px;
	}
.slide6text2{
	width: 100%;
	max-width: 700px;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 20px;
	}
.slide6button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide7text1{
	width: 100%;
	max-width: 700px;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 10px;
	}
.slide7text2{
	width: 100%;
	max-width: 700px;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 20px;
	}
.slide7button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.slide8text1{
	width: 100%;
	max-width: 700px;
	color: #000000;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-top: 40px;
	}
.slide8text2{
	width: 100%;
	max-width: 700px;
	height: 30%;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 20px;
	}
.slide8button1{
	width: 50%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	}
.carousel .carousel-text h3{
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-bottom: 0px;
	}
.carousel .carousel-text h1{
	color: #000000;
	font-size: 90px;
	font-weight: 700;
	margin-bottom: 20px;
	}
.carousel .carousel-text p{
	max-width: 500px;
	color: #000000;
	font-size: 24px;
	margin-bottom: 40px;
	}
.carousel .btn.btn-custom{
	padding: 20px 45px 22px 45px;
	color: #000000;
	background-color: #ffffff;
	}
.carousel .btn.btn-custom:hover{
	color: #000000;
	background-color: #ffdd00;
	}
.carousel .btn.btn-custom1{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom1:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 300px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom2{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom2:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 300px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom3{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom3:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 300px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom4{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom4:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 300px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom5{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom5:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 400px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom6{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom6:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 400px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom7{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom7:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 400px 0 0 0 #ee1c25;
	}
.carousel .btn.btn-custom8{
	padding: 20px 45px 22px 45px;
	text-align: center; 
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	background-color: #ffdd00;
	border: 1px solid #ee1c25;
	border-radius: 60px;
	box-shadow: inset 0 0 0 0 #ffffff;
	transition: ease-out 0.5s;
	-webkit-transition: ease-out 0.5s;
	-moz-transition: ease-out 0.5s;
	}
.carousel .btn.btn-custom8:hover{
	color: #ffdd00;
	font-weight: bold;
	background-color: #ffffff;
	box-shadow: inset 400px 0 0 0 #ee1c25;
	}
.carousel .owl-nav{
	position: absolute;
	width: 100%;
	height: 50px;
	top: calc(50% - 25px);
	left: 0;
	display: flex;
	justify-content: space-between;
	z-index: 9;
	}
.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	border-radius: 50px;
	background: rgba(255, 255, 255, .2);
	font-size: 22px;
	transition: .5s;
	}
.carousel .owl-nav .owl-prev{
	margin-left: 30px;
	}
.carousel .owl-nav .owl-next{
	margin-right: 30px;
	}
.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover{
	color: #ffffff;
	background: #ffdd00;
	}
.carousel .animated{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	}
@media (max-width: 991.98px){
	.carousel .carousel-text h3{
		margin-bottom: 5px;
	}
	.carousel .carousel-text h1{
		font-size: 60px;
	}
	.carousel .carousel-text p{
		font-size: 16px;
	}
	.carousel .carousel-text .btn{
		padding: 12px 30px;
		font-size: 15px;
		letter-spacing: 0;
	}
	}
@media (max-width: 767.98px){
	.carousel .carousel-text h3{
		font-size: 18px;
		letter-spacing: 2px;
		margin-bottom: 15px;
	}
	.carousel .carousel-text h1{
		font-size: 45px;
	}
	.carousel .carousel-text .btn{
		padding: 10px 25px;
		font-size: 15px;
		letter-spacing: 0;
	}
	}
@media (max-width: 575.98px){
	.carousel .carousel-text h3{
		font-size: 14px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}
	.carousel .carousel-text h1{
		font-size: 30px;
		margin-bottom: 15px;
	}
	.carousel .carousel-text p{
		margin-bottom: 25px;
	}
	.carousel .carousel-text .btn{
		padding: 8px 20px;
		font-size: 14px;
		letter-spacing: 0;
	}
	}
/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header{
	position: relative;
	margin-bottom: 45px;
	padding: 90px 0;
	text-align: center;
	background: #49309a;
	border-top: 1px dotted #ffffff;
	}
.page-header h2{
	position: relative;
	color: #ffffff;
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 5px;
	}
.page-header h2::after{
	position: absolute;
	content: "";
	width: 100px;
	height: 2px;
	left: calc(50% - 50px);
	bottom: 0;
	background: #ffffff;
	}
.page-header a{
	position: relative;
	padding: 0 12px;
	font-size: 22px;
	color: #ffffff;
	}
.page-header a:hover{
	color: #E81C2E;
	}
.page-header a::after{
	position: absolute;
	content: "/";
	width: 8px;
	height: 8px;
	top: -2px;
	right: -7px;
	text-align: center;
	color: #ffffff;
	}
.page-header a:last-child::after{
	display: none;
	}
@media (max-width: 991.98px){
	.page-header{
		padding: 60px 0;
	}
	.page-header h2{
		font-size: 45px;
	}
	.page-header a{
		font-size: 20px;
	}
	}
@media (max-width: 767.98px){
	.page-header{
		padding: 45px 0;
	}
	.page-header h2{
		font-size: 35px;
	}
	.page-header a{
		font-size: 18px;
	}
	}
/*******************************/
/******* Section Header ********/
/*******************************/
.section-header{
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 45px auto;
	}
.section-header p{
	display: inline-block;
	text-indent: 0;
	margin-bottom: 10px;
	padding-bottom: 5px;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #000000;
	}
.section-header p::after{
	position: absolute;
	content: "";
	width: 50%;
	height: 2px;
	left: 25%;
	bottom: 0;
	background: #ffdd00;
	}
.section-header p1{
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 5px;
	position: relative;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #000000;
	}
.section-header p1::after{
	position: absolute;
	content: "";
	width: 50%;
	height: 2px;
	left: 25%;
	bottom: 0;
	background: #ffdd00;
	}
.section-header.text-left p::after{
	left: 0;
	}
.section-header.text-left p1::after{
	left: 0;
	}
.section-header.text-right p::after{
	left: 50%;
	}
.section-header h2{
	margin: 0;
	font-size: 45px;
	font-weight: 700;
	}
@media (max-width: 991.98px){
	.section-header h2{
		font-size: 45px;
	}
	}
@media (max-width: 767.98px){
	.section-header h2{
		font-size: 40px;
	}
	}
@media (max-width: 575.98px){
	.section-header h2{
		font-size: 35px;
	}
	}
/*******************************/
/********** About CSS **********/
/*******************************/
.about{
	position: relative;
	width: 100%;
	padding: 45px 0 15px 0;
	}
.about .section-header{
	margin-bottom: 30px;
	margin-left: 0;
	}
.about .about-img img{
	width: 100%;
	border-radius: 5px;
	margin-bottom: 30px;
	}
.about .about-content{
	margin-bottom: 30px;
	text-align: justify;
	}
.about .about-content ul{
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 25px;
	}
.about .about-content ul li{
	margin-bottom: 5px;
	}
.about .about-content ul li i{
	margin-right: 8px;
	color: #000000;
	}
.about .about-content .btn.btn-custom{
	color: #000000;
	background: #ffdd00;
	box-shadow: inset 0 0 0 0 #ffdd00;
	font-family: Verdana, Tahoma;
	font-weight: normal;
	}
.about .about-content .btn:hover{
	color: #000000;
	background: #ffdd00;
	box-shadow: inset 200px 0 0 0 #ffdd00;
	font-family: Verdana, Tahoma;
	font-weight: normal;
	transform: scale(1.1);
	}
/*******************************/
/********* Service CSS *********/
/*******************************/
.service{
	position: relative;
	width: 100%;
	padding: 45px 0 0 0;
	}
.si_img{
	height: 100px;
	max-width: 250px;
	padding-bottom: 15px;
	object-fit: contain;
	}
/*******************************/
/********* Products CSS *********/
/*******************************/
.products{
	position: relative;
	width: calc(99% - 10px);
	padding: 45px 0 0 0;
	}
/*******************************/
/******** Location CSS *********/
/*******************************/
.location{
	position: relative;
	width: 100%;
	padding: 45px 0;
	}
.location p{text-indent:0;}
.location a{color: #000;}
.location a:hover{color: #ee1c25;}
.location .loc-table{display: table; width: 100%;}
.location .loc-table-row{display: table-row;}
.location .loc-table-cell-left{
	display: table-cell;
	padding-bottom: 20px;
	font-size: 18px;
	font-weight: 400;}
.location .loc-table-cell-right{
	display: table-cell;
	padding-bottom: 20px;
	padding-left: 10px;
	font-size: 18px;
	font-weight: 400;}
.location .fa-text{
	font-family: Tahoma, Verdana;
	font-size: 18px;
	padding-left: 15px;
	}
.location .fa-map-marker-alt, .location .fa-phone, .location .fa-envelope-open{font-size: 30px;}
.location .location-form iframe{
	width: 100%;
	height: 450px;
	border: 2px ridge #ee1c25;
	border-radius: 10px;
	}
/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial{
	position: relative;
	width: 100%;
	padding: 45px 0;
	}
.testimonial .testimonials-carousel{
	position: relative;
	width: calc(100% + 30px);
	margin: 0 -15px;
	}
.testimonial .testimonial-item{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	text-align: center;
	}
.testimonial .testimonial-item img{
	border: 0;
	border-radius: 100px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	transform: scale(.8);
	transition: 2s;
	}
.testimonial .testimonial-item .client-name{
	color: #000000;
	font-weight: 800;
	font-size: 25px;
	background: #fafafa;
	font-family: Verdana, Tahoma;
	transform: scale(.8);
	transition: 2s;
	}
.testimonial .owl-item.center .testimonial-item img{
	transform: scale(1);
	}
.testimonial .owl-item.center .testimonial-item .client-name{
	transform: scale(1);
	}
.testimonial .owl-dots{
	margin-top: 15px;
	text-align: center;
	padding-bottom: 30px;
	}
.testimonial .owl-dot{
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 10px;
	background: #bbbbbb;
	}
.testimonial .owl-dot.active{
	background: #ee1c25;
	}
/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer{
	position: relative;
	margin-top: 5px;
	padding-top: 10px;
	background: #ee1c25;
	}
.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter{
	text-align: right;
	margin-bottom: 5px;
	color: #ffffff;
	}
.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2{
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #ffffff;
	}
.footer .footer-link a.nav-link{
	display: block;
	margin-bottom: 1px;
	color: #ffffff;
	transition: .3s;
	}
.footer .footer-link a.nav-link::before{
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
	}
.footer .footer-link a:hover{
	color: #ffdd00;
	letter-spacing: 1px;
	}
.footer .footer-link a.nav-link-img{
	}
.footer .footer-link .navlinkactive{
	color: #ffdd00;
	letter-spacing: 1px;
	padding-left: 15px;
	padding-top: 7.5px;
	border: 0px dotted green;
	}
.footer .footer-contact p i{
	width: 25px;
	}
.footer .footer-social{
	position: relative;
	}
.footer .footer-social a{
	width: 40px;
	height: 40px;
	color: #000000;
	background: #ffffff;
	border-radius: 40px;
	padding-top: 11px;
	transition: .5s;
	}
.footer .footer-social a:hover{
	color: #000000;
	background: #ffdd00;
	}
.footer .footer-newsletter form{
	position: relative;
	width: 50%;
	}
.footer .footer-newsletter input{
	margin-bottom: 15px;
	height: 45px;
	background: transparent;
	border: 1px solid #ffffff;
	border-radius: 5px;
	}
.footer .footer-newsletter label{
	margin-top: 5px;
	color: #777777;
	font-size: 14px;
	letter-spacing: 1px;
	}
.footer .footer-newsletter .btn.btn-custom{
	width: 100%;
	color: #000000;
	background: #ffffff;
	box-shadow: inset 0 0 0 0 #E81C2E;
	}
.footer .footer-newsletter .btn:hover{
	color: #ffffff;
	background: #E81C2E;
	box-shadow: inset 200px 0 0 0 #E81C2E;
	}
.footer .copyright{
	text-align: center;
	padding-top: 15px;
	padding-bottom: 45px;
	}
.footer .copyright p{
	margin: 0;
	color: #ffffff;
	}
.footer .copyright p a{
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 1px;
	}
.footer .copyright p a:hover{
	color: #ffdd00;
	}
.mouse-pic{
	position: relative;
	text-align: center;
	}
.mouse-pic img{
	transition: all 0.1s ease-out;
	}
.mouse-pic:hover img{
	transform: scale(1.2);
	}
.mouse-pic-fix img{
	transition: all 0.1s ease-out;
	}
.mouse-pic-fix:hover img{
	transform: scale(1.2);
	}
.lang-panel{
	position: fixed;
	right: 20px;
	top: 0;
	z-index: 9999;
	}
.img-lang{
	max-width:100%;
	}
.navlinkactive{
	padding-top: 7.5px;
	padding-right: 15px;
	color: #ffdd00;
	outline: none;
	text-decoration: none;
	font-weight: bold;
	font-family: Verdana, Tahoma;
	}
@media (max-width: 991.98px){
	.navlinkactive{
	 padding-top: 0;
	 margin-top: 0;
	}
	}
.acc-div{
	background-color: #1a82ff;
	border-radius: 40px;
	border: 0;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 40px;
	padding-right: 40px;
	display: inline-block;
	vertical-align: middle;
	width: fit-content;
	margin-top: 35px;
	}
.acc-icon{
	width: 20px;
	vertical-align: middle;
	}
.content{
	color: #000000;
	font-family: Verdana, Tahoma;
	font-size: 16px;
	}
.content .header, .content h1{
	text-align: center;
	color: #000000;
	font-family: Verdana, Tahoma;
	font-size: 24px;
	}
.content .txt{
	color: #000000;
	font-family: Verdana, Tahoma;
	font-size: 16px;
	}
.fran{
	padding: 20px 20px;
	margin-bottom: 25px;
	text-align: justify;
	border: 1px solid #444444;
	border-radius: 20px;
	}