@font-face{
	font-family: exo-regular;
	src: url(fonts/Exo-Regular.ttf);
}
@font-face{
	font-family: exo-medium;
	src: url(fonts/Exo-Medium.ttf);
}
@font-face{
	font-family: exo-semiBold;
	src: url(fonts/Exo-SemiBold.ttf);
}
@font-face{
	font-family: exo-bold;
	src: url(fonts/Exo-Bold.ttf);
}
@font-face{
	font-family: montserrat-regular;
	src: url(fonts/Montserrat-Regular.ttf);
}
@font-face{
	font-family: montserrat-medium;
	src: url(fonts/Montserrat-Medium.ttf);
}
@font-face{
	font-family: montserrat-semiBold;
	src: url(fonts/Montserrat-SemiBold.ttf);
}

html, body{
	margin:0;
	padding:0;
	font-family: "montserrat-medium", sans-serif;
	background-color:#fff;
	scroll-behavior: smooth;
}
@media screen and (max-width:1600px){
	.container-max{
		width:100%;
		padding:0px 15px;
	}
}
@media screen and (min-width:1600px){
	.container-max{
		max-width:1600px;
		padding:0px 15px;
	}
}
.bg-sohanpal{
	background-color: rgba(215,89,12,1);
	color:#fff;
}
.bg-sohanpal a{
	color:#fff; 
}
.bg-sohanpal a:hover{
	color:#fff;
}
.btn-sohanpal{
	padding:7px 15px;
	min-width:130px;
	background-image: linear-gradient(to right, rgba(55,52,53,1)50%, rgba(215,89,12,1)50%);
	background-size: 200%;
	background-position: left;
	transition: all .4s;
	color: #fff;
	font-family: "exo-regular", sans-serif;
	font-size: 12px;
	border-radius: 0px;
	border:2px solid rgba(55,52,53,1);
	text-transform: uppercase;
}
.btn-sohanpal.transparent{
	background-image: linear-gradient(to right, rgba(55,52,53,0)50%, rgba(215,89,12,1)50%);
	color:rgba(55,52,53);
	font-family: "exo-semiBold", sans-serif;
}

.btn-sohanpal:hover{
	background-position: right;
	color: #fff;
	font-family: "exo-regular", sans-serif;
	border-color:rgba(215,89,12,1);
}

.btn-sohanpal.dark{
	background-image: linear-gradient(to right, rgba(55,52,53,0)50%, rgba(215,89,12,1)50%);
	color:rgba(255,252,253);
	font-family: "exo-regular", sans-serif;
	border-color:#fff;
}
.btn-sohanpal.dark:hover{
	border-color:rgba(215,89,12,1);
}
.btn-sohanpal:focus{
	outline: none;
	box-shadow: none;
	color:#fff;
}
.btn.btn-lg{
	padding: 10px 15px;
	font-size: 14px;
	border-width: 1px;
}
.btn.btn-lg:hover{
	color:#fff;
}
.form-item{
	width:100%;
	padding:10px 15px;
	border:1px solid #e0e0e0;
	font-family: "exo-regular", sans-serif;
}

.header-top a{
	display: inline-block;
	margin-right:15px;
}
.header-top a:last-child{
	margin-right:0px;
}
.header-top p{
	font-size: 14px;
}
.header-top .content{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.header-top{
	padding-top:10px;
	padding-bottom: 50px;
	position: relative;
}
.header{
	position: relative;
	transform: translateY(-50%);
	transition: .4s;
	z-index: 999;
}
.header.after{
	position: fixed;
	top:0;
	left: 0;
	right:0;
	transform: translateY(0%);
	background:#fff;
	box-shadow: 2px 2px 12px rgba(0,0,0,.35);
	z-index: 999;
}
.header .menubar{
	background:#fff;
	padding:0px 10px;
	box-shadow: 2px 2px 12px rgba(0,0,0,.35);
	transition: .4s;
	border-radius: 2px;
}
.header.after .menubar{
	box-shadow:none;
	padding:0px !important;
}
.header .menubar .navbar-brand{
	padding:0px;
}
.header .menubar .navbar-brand img{
	padding:5px 0px;
	box-sizing: border-box;
}
.menubar{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menubarShowBtn, .menubarCloseBtn{
	display: none;
}
.main-menu{
	display: inline-block;
	position: relative;
}
.submenuLabel-1{
	position: absolute;
	left: 0;
	top:100%;
	min-width: 250px;
	box-shadow: 0px 5px 5px rgba(0,0,0,.35);
	background:#fff;
	display: none;
	animation-name: slide-up;
	animation-fill-mode: both;
	animation-duration: .4s;
	animation-timing-function: ease-in-out;
	z-index: 999;
}
@keyframes slide-up{
	from{
		top:calc(100% + 50px);
		opacity: 0;
	}
	to{
		top:100%;
		opacity: 1;
	}
}

.submenuLabel-1.show{
	display: block;
}
.main-menu-link, .submenu-link{
	display: block;
	font-family: "exo-semiBold", sans-serif;
	transition: .4s all;
	position: relative;
}
.main-menu-link.before, .main-menu-link.after{
	padding-right:20px;
}
.main-menu-link.before:before, .main-menu-link.after:before{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:5px;
}
.main-menu-link.before:before{
	content:'+';
}
.main-menu-link.after:before{
	content:'-';
}
.main-menu-link{
	font-size: 16px;
	line-height: 16px;
	padding:23px 10px;
	color:rgba(55,52,53,1);
}
.main-menu-link:hover, .submenu-link:hover{
	color:rgba(215,89,12,1);
	text-decoration: none;
}
.submenu-link{
	font-size: 14px;
	line-height: 14px;
	padding:12px 15px;
	color:rgba(55,52,53,1); 
}
.homeSlider{
	position: relative;
	z-index: 200;
	margin-top:-62px;
}
.homeSlider .carousel-inner{
	position: relative;
	border-radius: 2px;
}
.homeSlider .carousel-inner .overlay{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(1,150,234,.65);
	display: flex;
	align-items: center;
	padding: 30px 10vw;
	overflow-x: hidden;
}
.homeSlider .carousel-inner .overlay.right{
	justify-content: flex-end;
	text-align: right
}
.homeSlider .carousel-inner .overlay-inner{
	color:#fff;
}
.homeSlider .carousel-inner .overlay-inner h2{
	font-family: "exo-bold", sans-serif;
	margin-bottom: 40px;
	opacity: 0;
}
.homeSlider .carousel-inner .overlay-inner h5{
	font-family: "exo-regular", sans-serif;
	background:rgba(215,89,12,1);
	display: inline-block;
	font-size: 18px;
	padding:7px 15px;
	opacity: 0;
}
.homeSlider .carousel-inner .sliderBtns a{
	animation-delay: 1s;
	opacity: 0;
}
.carousel-item.active .slide-left, .carousel-item.active .slide-right{
	animation-duration: .8s;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}
.carousel-item.active .slide-left{
	animation-name: slide-inLeft;
}
.carousel-item.active .slide-right{
	animation-name: slide-inRight;
}
@keyframes slide-inLeft{
	from{
		opacity: 0;
		transform: translateX(100px);
	}
	to{
		transform: translateX(0px);
		opacity: 1;
	}
}
@keyframes slide-inRight{
	from{
		opacity: 0;
		transform: translateX(-100px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}
.homeSlider .carousel-control-prev,
.homeSlider .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  height:30px;
  width: 30px;
}
.homeSlider .carousel-control-prev{
  left: 15px;
}
.homeSlider .carousel-control-next{
  right: 15px;
}


.banner{
	height:200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top:-62px;
}
.about-page .banner, .enquiry-page .banner, .application-page .banner,
.products-page .banner, .clients-page .banner{
	background-image: linear-gradient(to right, rgba(1,150,234,.85), rgba(1,150,234,.65)), url(../image/banner.png);
}
.contact-page .banner{
	height:300px;
}
.banner .content{
	display: flex;
	justify-content: center;
	align-items: center;
	height:200px;
}
.banner .content h2{
	font-family: "exo-semiBold", sans-serif;
	color:#fff;
}
.page-content{
	padding:70px 0px;
}
h5.article-heading{
	color:rgba(215,89,12,1);
	font-family: "exo-semiBold", sans-serif;
	text-align:center;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 35px;
}
h5.article-heading:before{
	content: '';
	position: absolute;
	top:100%;
	left:50%;
	transform: translateX(-50%);
	width:50px;
	height:1px;
	background:rgba(215,89,12,1);
}
h2.article-heading{
	font-family: "exo-semiBold", sans-serif;
	text-transform: capitalize;
	margin-bottom: 30px;
}
h2.article-heading span{
	color:rgba(215,89,12,1);
}
h2.article-heading.before{
	margin-bottom: 70px;
}
h3.article-heading{
	font-family: "exo-semiBold", sans-serif;
}
.welcome-note{
	background-image: linear-gradient(to right, rgba(240,240,240,1)70%, rgba(240,240,240,0)30%);
	margin-top:50px;
}
.welcome-note .content{
	display: flex;
	height:100%;
	padding: 25px 0px 0px 0px
}
.welcome-note h2{
	font-size: 30px;
}
.welcome-note .content p{
	font-size: 14px;
	line-height: 25px;
}
.welcome-note .content p em{
	font-family: "exo-semiBold", sans-serif;
}
.welcome-note .content p span{
	font-family: "exo-semiBold", sans-serif;
}
.welcome-note .content-inner{
	width:100%;
}	
.welcome-note .enquiryForm{
	box-shadow: 2px 2px 15px rgba(0,0,0,.2);
	border-radius: 2px;
	background:#fff;
}
.welcome-note .enquiryForm .heading{
	background:rgba(215,89,12,1);
	width:100%;
	padding:10px 15px;
	color:#fff;
}
.welcome-note .enquiryForm{
	margin:0px;
	padding:0px;
}
.welcome-note .enquiryForm form{
	padding:20px 30px;
}
.welcome-note .enquiryForm label{
	font-size: 14px;
}
.welcome-note .enquiryForm .form-item{
	padding:7px 15px;
}

h2.article-heading.before{
	margin-bottom: 70px;
}
.product-showcase a{
	text-decoration: none;
	color:rgba(55,52,53,1);
}
.product-showcase .inner{
	margin:auto;
	display: block;
	border:1px solid #e0e0e0;
	background:#fff;
	transition: .4s;
}
.product-showcase .image{
	position: relative;
	overflow: hidden;
}
.product-showcase .image img{
	transition: .6s;
}
.product-showcase h6{
	padding:15px;
	font-family: "exo-semiBold", sans-serif;
	transition: .4s;
} 
.product-showcase a:hover img{
	transform: scale(1.2);
}
.product-showcase a:hover .inner{
	box-shadow: 2px 2px 12px rgba(0,0,0,.2);
}
.product-showcase a:hover{
	color: rgba(215,89,12,1);
} 
.statistics{
	/*background:rgba(1,150,234,.65);*/
}
.statistics .inner{
	padding-left:20px;
	position: relative;
	max-width: 250px;
	margin:auto;
	display: block;
}
.statistics .inner .desc{
	width:100%;
	margin:auto;
	border:1px solid #e0e0e0;
	background:#fff;
	padding:15px 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 80px;
	transition: .4s;
}
.statistics .inner .desc h2{
	margin-right:15px;
	margin-bottom: 0px;
	font-family: "exo-semiBold", sans-serif
}
.statistics .inner .desc p{
	font-family: "exo-semiBold", sans-serif;
	font-size: 14px;
	line-height: 16px;
}
.statistics .inner .overlay{
	position: absolute;
	left:0;
	top:50%;
	height:40px;
	width:40px;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid #e0e0e0;
	background:#fff;
	border-right:none;
	color:rgba(215,89,12,1);
	transition: .4s;
}
.statistics .inner .overlay:after{
	content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-bottom-color: #fff;
    top: -2px;
    right: -13px;
    border-bottom: 40px solid #fff;
    border-right: 14px solid transparent;
}
.statistics .inner .overlay:before{
	content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 40px solid #e0e0e0;
    border-right: 14px solid transparent;
    top: -1px;
    right: -14px;
}
.statistics .inner:hover .desc{
	background:rgba(1,150,234,1);
	color:#fff;
	border-bottom: 2px solid rgba(215,89,12,1);
}
.statistics .inner:hover .overlay{
	color:rgba(1,150,234,1);
}
.testimonials .content-right{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: linear-gradient(to right, rgba(1,150,234,.9), rgba(1,150,234,.9) ), url(../image/air-pollution-control-device.png);
	padding-left: 15px;
	padding-right: 15px;
}
.testimonials .content-left{
	background: rgba(215,89,12,1);
	padding-left: 15px;
	padding-right: 15px;
}
.testimonials .swiper-slide-inner{
	max-width: 450px;
	margin:auto;
	color:#fff;
}
.testimonials .swiper-slide-inner .image{
	max-width: 80px;
	margin: auto;
	border:2px solid #e0e0e0;
	border-radius: 50%;
	overflow: hidden;
	padding:10px;
}
.testimonials .swiper-slide-inner h5{
	font-family: "exo-semiBold", sans-serif;
	text-align: center;
	margin-top:15px;
}
.testimonials .swiper-slide-inner p{
	font-family: "montserrat-regular", sans-serif;
	text-align: center;
	margin-top:20px;
}
.testimonials .swiper-slide-inner .quote-icon{
	margin-top:30px;
	font-size: 30px;
}
.testimonials .swiper-button-next, .testimonials .swiper-button-prev{
	background-size:15px 15px;
	border:1px solid rgba(255,255,255,.5);
	transition: .4s;
}
.testimonials .swiper-button-next:hover, .testimonials .swiper-button-prev:hover{
	border:1px solid rgba(255,255,255,1);
}

.testimonials .modal-header{
	padding: 10px 15px 0px 15px;
	border:none;
}
.modal-header .close{
	color:#fff;
	opacity: .9;
	transition: .4s;
}
.modal-header .close:hover{
	color:rgba(215,89,12,1);
	opacity: 1;
}
.modal-header .close:focus{
	outline: none;
	box-shadow: none;
}
.testimonials .modal-body{
	padding: 10px 15px 15px 15px;
}
.videoBtn i{
	background:rgba(55,52,53,1);
	border:none;
	font-size: 20px;
	width:70px;
	height:70px;
	display: flex;justify-content: center;
	align-items: center;
	color:#fff;
	border-radius: 50%;
	cursor: pointer;
	transition: .4s;
	position: relative;
	z-index: 2;
}
.videoBtn {
	background:transparent;
	border:none;
	outline: none;
}
.videoBtn:focus{
	border:none;
	outline: none;
	box-shadow: none;
}
.videoBtn i:hover{
	background:rgba(215,89,12,1);
}
.videoBtn span{
	position: absolute;
    width: 160px;
    height: 160px;
    mix-blend-mode: screen;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -80px 0 0 -80px;
    background: rgba(255, 255, 255, 1);
    border-radius: 100px;
    animation: ripple 1.8s ease-out infinite;
}
.videoBtn span:nth-child(2){
	animation-delay: 1s;
}
.videoBtn span:nth-child(3){
	animation-delay: 2s;
}
@keyframes ripple{
	0%, 35% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(.6);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
.videoBtn span:focus{
	animation-play-state: paused;
}

.about .image{
	max-width: 330px;
	margin:auto;
	display: block;
	box-shadow: 8px 8px rgba(200,200,200,1);
}
.about p{
	font-size: 14px;
	line-height: 25px;
	text-align: justify;
}
.about p em, .about p span{
	font-family: "exo-semiBold", sans-serif;
}
.vision-mission{
	background: rgba(215,89,12,1);
}
.vision-mission .content{
	display: flex;
	justify-content: center;
	align-items: center;
	height:100%;
	position: relative;
}
.vision-mission .content.left{
	border-right:2px solid #fff;
	transform: translateX(1px);
	text-align: right;
	padding:40px 20px;
	color:#fff;
}
.vision-mission .content.right{
	border-left:2px solid #fff;
	transform: translateX(-1px);
	text-align: left;
	padding:40px 20px;
	color: #fff
}
.vision-mission .content.left:before, .vision-mission .content.right:before{
	position: absolute;
	content: '';
	top:40px;
	width:30px;
	height:30px;
	background:#fff;
	border-radius: 50%;
}
.vision-mission .content.left:after, .vision-mission .content.right:after{
	position: absolute;
	content: '';
	top:55px;
	width:30px;
	height:2px;
	background:#fff;
}
.vision-mission .content.left:after{
	right:15px;
}
.vision-mission .content.right:after{
	left:15px;
}
.vision-mission .content.left:before{
	right:0;
	transform: translateX(50%);
}
.vision-mission .content.right:before{
	left:0;
	transform: translateX(-50%);
}
.vision-mission .content .content-inner{
	position: relative;
	max-width: 350px;
}
.vision-mission .content .content-inner h4{
	font-family: "exo-semiBold", sans-serif;
	margin-bottom: 20px;
}
.vision-mission .content .content-inner p{
	font-family: "montserrat-regular", sans-serif;
	font-size:14px;
	line-height: 25px;
}

.products .heading{
	border:1px solid #e0e0e0;
	border-bottom: 2px solid rgba(215,89,12,1);
	margin-bottom: 30px;
	padding:10px 15px;
	font-family: "exo-semiBold", sans-serif;
}
.products p{
	font-size: 14px;
	line-height: 25px;
}
ul.check-mark li{
	padding-left:20px;
	line-height: 25px;
	margin-bottom: 10px;
	font-size: 14px;
}
ul.check-mark li:before{
	content:'';
	position: absolute;
	width:25px;
	left:0;
	height:25px;
	background-image: url(../image/checkmark.svg);
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
}
.products h6{
	font-family: "exo-semiBold", sans-serif;
	margin-bottom: 20px;
}
.products .product-showcase img{
	max-height:200px;
	margin:auto;
	display: block;
}
.products .product-showcase .image{
	padding:3px;
}
.products .product-showcase h6{
	border-top:1px solid #e0e0e0;
}
.products .gallery .image{
	border:1px solid #e0e0e0;
	margin:auto;
	display: block;
	text-align: center;
}
.products .gallery h6{
	margin-top: 10px;
	font-size: 12px;
	margin-bottom: 0px;
}
.products .product-category h5{
	padding: 10px 0px;
	font-family: "exo-semiBold", sans-serif;
}
.products .product-category ul li{
	margin-bottom: 5px;
}
.products .product-category ul li a{
	display: block;
	border:1px solid #e0e0e0;
	background-image: linear-gradient(to right, rgba(215,89,12,1)50%, rgba(255,255,255,1)50%);
	background-size: 200%;
	background-position: calc(100% + 3px);
	padding:10px 15px;
	color:rgba(55,52,53,1);
	transition: .4s;
	font-size: 14px;
}
.products .product-category ul li a:hover, .products .product-category ul li a.active{
	background-position: left;
	color:#fff;
	text-decoration: none;
	border-color: rgba(215,89,12,1);
}

.application-areas .inner{
	max-width: 450px;
	margin:auto;
	display: block;
	border:1px solid #e0e0e0;
}
.application-areas .image{
	position: relative;
	width:100%;
	overflow: hidden;
	perspective: 800px;
}
.application-areas .image:after{
	content: '';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(1,150,234,.7);
	transform: rotateX(-120deg);
	transform-origin: top center;
	transition: all .4s;
	transition-timing-function: ease-in-out;
}
.application-areas .inner:hover .image:after{
	transform: rotateX(0deg);
}
.application-areas .image img{
	transition: .6s;
}
.application-areas .inner:hover img{
	transform: scale(1.2);
}
.application-areas .iName{
	padding:15px 15px;
	font-family: "exo-semiBold", sans-serif;
}
.our-clients p{
	max-width: 700px;
	margin:auto;
	display: block;
	text-align: center;
	font-size: 14px;
}
.our-clients h5{
	margin-bottom: 15px;
	font-family: "exo-semiBold", sans-serif;
}
.clients-list .table th{
	font-size: 14px;
	font-family: "exo-semiBold", sans-serif;
	padding:8px 15px;
}
.clients-list .table td{
	font-size: 14px;
	padding:8px 15px;
}

.enquiry-form p{
	max-width: 850px;
	margin:auto;
	font-size: 14px;
}
.enquiryForm{
	padding:40px 30px;
	border:1px solid #e0e0e0;
	max-width: 700px;
	margin:auto;
	display: block;
	margin-top:50px;
}
.enquiryForm form .input-group{
	margin-bottom: 30px;
}
.enquiryForm form label{
	font-size: 14px;
}

.map{
	width:100%;
	height:300px;
}
.contact-details .content{
	max-width: 320px;
	display: flex;
	margin:auto;
	border:1px solid #e0e0e0;
	justify-content: center;
	height:100%;
	transition: .4s;
	padding:0px 15px;
}
.contact-details .content:hover{
	box-shadow: 1px 1px 8px rgba(0,0,0,.2);
}
.contact-details .content-inner{
	padding:50px 0px;
}
.contact-details .image{
	max-width: 80px;
	padding:10px;
	margin:auto;
	margin-bottom: 30px;
	filter: grayscale(1);
	transition: .4s;
}
.contact-details .content:hover .image{
	filter: grayscale(0);
}
.contact-details h5{
	font-family: "exo-semiBold", sans-serif;
	text-align: center;
	margin-bottom: 25px;
	font-size: 16px;
}
.contact-details .content-inner p{
	font-size: 14px;
	text-align: center;
}
.contact-details .content-inner p a{
	color:rgba(55,52,53,1);
	transition: .4s;
}
.contact-details .content-inner p a:hover{
	color: rgba(215,89,12,1);
	text-decoration: none;
}
.contactForm{
	max-width: 700px;
	margin:auto;
	display: block;
	border:1px solid #e0e0e0;
}
.contactForm .heading{
	padding:30px 15px 15px 15px;
}
.contactForm .heading p{
	font-size: 14px;
	max-width: 500px;
	margin:auto;
}
.contactForm form{
	padding:50px 15px;
}
.contactForm form .input-group{
	margin-bottom: 30px;
}
.contactForm form label{
	font-size: 14px;
}

.footer-top{
	background: linear-gradient(to right, rgba(55,52,53,.85), rgba(55,52,53,.85)), url(../image/footer-top-bg.png);
	background-position: center;
	background-size:cover;
	background-repeat: no-repeat;
	color:#fff;
	padding: 40px 0px
}
.footer-top .content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-top .content .left h4{
	font-family: "exo-medium", sans-serif;
}
.footer-top .content .left p{
	font-family: "montserrat-regular", sans-serif;
}

/*.footer-saperator{
	padding:4px;
	background:linear-gradient(60deg, rgba(255,255,255,1)30%, rgba(215,89,12,1)30%);
}*/
.footer .inner{
	padding:0px 5px;
}
.footer h5{
	font-family: "exo-semiBold", sans-serif;
	margin-bottom: 25px;
}
.footer p{
	font-size: 12px;
	line-height: 20px;
}
.footer p span{
	font-family: "exo-semiBold", sans-serif;
}
.footer h6{
	font-family: "exo-semiBold", sans-serif;
	font-size: 14px;
}
.footer ul.social-media li a{
	display: flex;
	width:35px;
	height:35px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid rgba(215,89,12,1);
	background: rgba(215,89,12,1);
	color:#fff;
	border-radius: 2px;
	transition: all .4s;
}
.footer ul.social-media li a:hover{
	background:rgba(1,150,234,1);
	border-color: rgba(1,150,234,1);
	text-decoration: none;
}
.footer ul.footer-links a{
	display: block;
	font-size: 14px;
	font-family: "exo-medium", sans-serif;
	padding:5px 10px;
	color:rgba(55,52,53,1);
	transition: .4s;
}
.footer ul.footer-links a:hover{
	color: rgba(215,89,12,1);
	text-decoration: none;
}
.footer p a{
	color:rgba(55,52,53,1);
	transition: .4s;
}
.footer p a .fa{
	color:rgba(215,89,12,1);
}
.footer p a:hover{
	color:rgba(215,89,12,1);
	text-decoration: none;
}
.footer-bottom{
	border-top:1px solid #e7e7e7;
	padding:15px 0px;
	margin-bottom: 50px;
}
.footer-bottom .content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom p{
	font-size: 12px;
	font-family: "exo-medium", sans-serif;
}
.footer-bottom p a{
	color: rgba(55,52,53,1);
}
.footer-bottom p a:hover{
	color: rgba(55,52,53,1);
}
.footer-bottom a.up-button{
	display: block;
	width:30px;
	height:40px;
	background:rgba(215,89,12,1);
	text-align: center;
	line-height: 40px;
	position: relative;
	color:#fff;
}
.footer-bottom a.up-button:before{
	content:'';
	position: absolute;
	width:10px;
	height:40px;
	top:0;
	right:100%;
	border-bottom: 40px solid rgba(215,89,12,1);
	border-left:14px solid transparent;
}
.footer-bottom a.up-button:after{
	content:'';
	position: absolute;
	width:10px;
	height:40px;
	top:0;
	left:100%;
	border-top: 40px solid rgba(215,89,12,1);
	border-right:14px solid transparent;
}



#clients{
	position: fixed;
	bottom: 0;
	left:0;
	width:100%;
	height:50px;
	padding:5px 0px;
	background:#f5f5f5;
	z-index: 1000;
	box-shadow: 1px -2px 2px rgba(0,0,0,.35); 
}
.clients-wrap{
	max-width: 1400px;
	display: block;
	overflow: hidden;
	margin:auto;
}
#clients-list{
	list-style: none;
	position: relative;
	margin:0 auto;
	padding: 0;
	clear:both;
}
#clients-list li{
	display: block;
	float: left;
	border:1px solid #aaa;
	margin-right:8px;
	width:100px;
	height:41px;
	text-align: center;
	background:#aaa;
}





















@media screen and (max-width: 992px){
	.menubarShowBtn{
		width:45px;
		height:45px;
		display:flex;
		justify-content: center;
		align-items: center;
		background:transparent;
		border:1px solid #aaa;
		color:rgba(55,52,53,1);
		font-size: 20px;
		margin:5px 0px;
	}
	.menubarShowBtn:focus{
		box-shadow: none;
		outline: none;
	}
	.navbar-brand img{
		max-width: 230px;
	}
	.menubar{
		position: relative;
	}
	.collapsibleMenubar{
		position: absolute;
		top:100%;
		left:0%;
		right:0%;
		height:100%;
		display: none;
		animation-name: slide-in;
		animation-fill-mode: both;
		animation-duration: .4s;
		animation-timing-function: ease-in-out;
		min-height: 280px;
		overflow-y: auto;
		background:rgba(55,52,53,1);
		border-bottom: 2px solid rgba(55,52,53,1);
	}
	.collapsibleMenubar.show{
		display: block;
		z-index: 999;
	}
	.collapsibleMenubar.show.after{
		min-height: 550px;
	}
	@keyframes slide-in{
		from{
			transform: translateY(50px);
		}
		to{
			transform: translateY(0px);
		}
	}
	.header.after .collapsibleMenubar{
		left:-15px;
		right:-15px;
	}
	.main-menu{
		display: block;
		position: relative;
	}
	.main-menu-link{
		padding:12px 15px;
		background:rgba(55,52,53,1);
		color:#fafafa;
		font-size: 14px;
		font-weight:400;
	}
	.submenuLabel-1{
		position: relative;
		left: 0;
		top:0%;
		min-width: 300px;
		background:#fff;
		display: none;
		box-shadow: none;
		border-left:2px solid rgba(55,52,53,1);
		border-right:2px solid rgba(55,52,53,1);
		box-sizing: border-box;
		animation-name: slide-up;
		animation-fill-mode: both;
		animation-duration: .4s;
		animation-timing-function: ease-in-out;
		z-index: 999;
	}
	@keyframes slide-up{
		from{
			top:0%;
			opacity: 0;
		}
		to{
			top:0%;
			opacity: 1;
		}
	}
	.submenu-link{
		padding:12px 15px;
	}
	.homeSlider{
		margin-top:-55px;
	}

	.vision-mission .content.left{
		border-right:none;
		border-left:2px solid #fff;
		transform: translateX(0px);
		text-align: left;
		padding:30px 15px;
	}
	.vision-mission .content.right{
		transform: translateX(0px);
		padding:30px 20px;
	}
	
	.vision-mission .content.left:after, .vision-mission .content.right:after{
		position: absolute;
		content: '';
		top:55px;
		width:30px;
		height:2px;
		background:#fff;
	}
	.vision-mission .content.left:after{
		left:15px;
	}
	.vision-mission .content.right:after{
		left:15px;
	}
	.vision-mission .content.left:before{
		left:0;
		transform: translateX(-50%);
	}
	.vision-mission .content.right:before{
		left:0;
		transform: translateX(-50%);
	}

}

@media screen and (max-width: 575px){
	.container{
		max-width: 100% !important;
	}
	.collapsibleMenubar.show.after{
		min-height: 470px;
	}
	.main-menu-link.before:before, .main-menu-link.after:before{
		position: absolute;
		top:50%;
		transform: translateY(-50%);
		right:20px;
	}
	.homeSlider .carousel-inner img{
		min-width:700px;
	}
	.homeSlider .carousel-inner .overlay-inner h2{
		font-family: "exo-semiBold", sans-serif;
		font-size: 22px;
	}
	.homeSlider .carousel-inner .overlay-inner h5{
		font-size: 12px;
	}
	h2.article-heading{
		font-size: 20px;
	}
	h2.article-heading.before{
		margin-bottom: 40px;
	}
	h3.article-heading{
		font-size: 20px; 
	}
	.page-content{
		padding:40px 0px;
	}
	.welcome-note{
		background:none;
	}
	p{
		text-align: justify;
		font-size: 12px;
	}
	.footer-top .content{
		display: block;
	}
	.footer-top .content .right{
		margin-top:20px;
	}
	.footer-bottom .left{
		padding-right:15px;
	}
	.testimonials .content-right{
		padding:70px 0px;
	}
	.testimonials .swiper-button-next, .testimonials .swiper-button-prev{
		top:20%;
		transform: translateY(100%);
	}
	.videoBtn i{
		width:50px;
		height:50px;
	}
	.videoBtn span{
		width:100px;
		height:100px;
		margin: -50px 0 0 -50px;
	}
	.vision-mission .content.left .content-inner{
		padding-left:15px;
	}
	.vision-mission .content.right .content-inner{
		padding-left:5px;
	}
	.vision-mission .content.left:before, .vision-mission .content.right:before{
		top:35px;
		width:20px;
		height:20px;
	}
	.vision-mission .content.left:after, .vision-mission .content.right:after{
		top:45px;
		width:15px;
	}
	.vision-mission .content.left:after{
		left:10px;
	}
	.vision-mission .content.right:after{
		left:10px;
	}
}