@charset "UTF-8";
/* CSS Document */
.clearfix:before, .clearfix:after{content: ""; display: table}
.clearfix:after{clear: both;}
.clearfix{zoom: 1;}

*,*:before,*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

.left{float:left;}
.right{float:right;}

body{
	background: #d0d0d0;
	overflow-x: hidden;
}
body.no-scroll{overflow: hidden;}

h2{
	font: 28px/35px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
}

#main{
	position: relative;
	width: 100%;
	background: #ffffff;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
}
#main:before{
	content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 12px;
	background: -webkit-linear-gradient(left,rgba(255,255,255,0),rgba(0,0,0,0.05));
    background: linear-gradient(to right,rgba(255,255,255,0),rgba(0,0,0,0.05));
    left: -12px;
}
#main:after{
	content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 12px;
    background: -webkit-linear-gradient(right,rgba(255,255,255,0),rgba(0,0,0,0.05));
    background: linear-gradient(to left,rgba(255,255,255,0),rgba(0,0,0,0.05));
    right: -12px;
}

img{max-width: 100%;}

label{
	display: block;
	font: 0.75rem/1.3333em 'Open Sans', sans-serif;
	color: #303740;
	margin-bottom: 5px;
}
label sup{color: #eb242f;}

.primary-input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: 1px solid #D5D5D5;
    background: #FFFFFF;
    border-radius: 3px;
    font: 14px/34px 'Open Sans', sans-serif;
	color: #303740;
	padding: 0 10px;
	transition: all 0.3s;
}
textarea.primary-input{
	line-height: 20px;
	resize: none;
	height: 70px;
	padding: 5px 10px;
	transition: all 0.3s;
}
p.error{
    display: none;
    width: 100%;
    font: 11px/13px 'Open Sans', sans-serif;
    color: #FF0000;
    font-style: italic;
    position: absolute;
    top: 100%;
    left: 0;
}
.primary-input.error{
	background: rgba(255, 0, 0, 0.20);
    border-color: #FC1420;
}
.input-hldr{position: relative;}
.select-hldr{
	position: relative;
	background: #ffffff;
}
.select-hldr select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	border: 1px solid #D5D5D5;
    background-color: transparent;
    border-radius: 3px;
    font: 14px/34px 'Open Sans', sans-serif;
	color: #303740;
	padding: 0 25px 0 10px;
	height: 36px;
	position: relative;
	z-index: 1;
}
.select-hldr select option{
	font: 14px/34px 'Open Sans', sans-serif;
    color: #303740;
}
.select-hldr span{
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 0;
	border: none;
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #707070;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.wrapper{
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
}

.primary-btn{
	background: #244E80;
	border-radius: 3px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	font: 14px/19px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
	padding: 11px 22px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}
.primary-btn:hover{
	background: #183a63;
	transition: all 0.3s;
}

.secondary-btn{
	background: #EB242F;
	font: 18px/25px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	border-radius: 45px;
	padding: 10px 30px;
	cursor: pointer;
	transition: all 0.3s;
}
.secondary-btn:hover{background: #d2212a;}

p{
	font: 15px/30px 'Open Sans', sans-serif;
	color: #303740;
}

.link-btn{
	text-transform: uppercase;
	font: 0.875rem/1.35715em 'Open Sans', sans-serif;
	font-weight: 600;
	color: #28507C;
	transition: all 0.3s;
}
.link-btn:hover{color: #E82836;}

.link-btn svg{
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
}
.link-btn svg path{transition: all 0.3s;}
.link-btn:hover svg path{fill: #E82836;}

/* Header */
#header{
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1600px;
	background: #ffffff;
	z-index: 99;
	transition: all 0.3s;
}
#header .wrapper{
	max-width: 1300px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
#header .logo-hldr{
	width: 315px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
#header .logo-hldr a{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding: 25px 0;
	transition: all 0.3s;
}
#header .logo-hldr a img:first-child{
	display: block;
	width: 129px;
	margin-right: 25px;
}
#header .logo-hldr a img:last-child{
	display: block;
	width: 118px;
}
#header nav{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: flex-end;
	margin-right: 35px;
	position: absolute;
	right: 225px;
}
#header .enquiry-btn{
	border-radius: 40px;
	margin-left: 35px;
}
#header nav ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
#header nav ul li{margin-left: 30px;}
#header nav ul li:first-child{margin: 0;}
#header nav ul li a{
	display: block;
	font: 14px/19px 'Open Sans', sans-serif;
	color: #303740;
	transition: all 0.3s;
}
#header nav ul li:hover a,
#header nav ul li.active a{
	color: #ED1C23;
}
#header .contact-num{
	background: #00B9B8;
	border-radius: 44px 0 0 44px;
	padding: 10px 50px 10px 15px;
	position: absolute;
	right: 0;
	transition: all 0.3s;
}
#header .contact-num .desktop-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font: 16px/22px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
}
#header .contact-num svg{
	display: block;
	margin-right: 10px;
}
#header .contact-num svg path{fill: #ffffff;}
#header.sticky{box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);}
#header.sticky .logo-hldr a{padding: 10px 0;}
#header .contact-num .mobile-btn{display: none;}
#header .mobile-enquiry-hldr{
	display: none;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
#header .mobile-enquiry{
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    background: #244E80;
    cursor: pointer;
    margin-right: 10px;
}
#header .mobile-enquiry svg{
	display: block;
	width: 80%;
	height: auto;
	margin-top: 5px;
	margin-right: -5px;
}
#header .mobile-enquiry path{fill: #ffffff;}
.banner-sticky #header.sticky .logo-hldr a{padding: 5px 0;}
/* END Header */

/* Container */
#container{padding-top: 113px;}
.explore-page #container{padding-top: 0;}
/* Our Products */
#OurProducts{padding-bottom: 100px;}
#OurProducts .wrapper{max-width: 1300px;}
.our-pro-main{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	height: 520px;
}
.our-pro-hldr{width: calc(100% - 345px);}
#OurProducts h2{
	margin-bottom: 15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
#OurProducts h2 hr{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	margin: 0;
	padding: 0;
	border: none;
	border-top: 1px solid #00b9b8;
	margin-left: 20px;
}
.our-pro-cnt{height: calc(100% - 50px);}
.our-pro-cnt .owl-stage-outer{
	height: calc(100% + 40px);
    padding: 0 0 40px 0;
}
.our-pro-cnt .owl-stage-outer .owl-stage{height: 100%;}
.our-pro-cnt .owl-stage-outer .owl-stage .owl-item{height: 100%;}
.our-pro-cnt .our-pro-ech{
	position: relative;
	height: 100%;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
	transition: all 0.3s;
}
.our-pro-cnt img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s;
}
.our-pro-cnt .owl-dots{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.our-pro-cnt .owl-dots .owl-dot{
	display: block;
	width: 10px;
	height: 10px;
	background: #d0d0d0;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s;
}
.our-pro-cnt .owl-dots .owl-dot span{
	display: block;
	transition: all 0.3s;
}
.our-pro-cnt .owl-dots .owl-dot.active{background: #244e80;}
.our-pro-cnt.owl-carousel .owl-nav .owl-prev{
	position: absolute;
	top: 50%;
	left: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -20px;
    transition: all 0.3s;
}
.our-pro-cnt.owl-carousel .owl-nav .owl-prev span{
	height: 20px;
    width: 20px;
	display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(135deg);
	transform-origin: 77% 60%;
    transition: all 0.3s;
}
.our-pro-cnt.owl-carousel .owl-nav .owl-next{
	position: absolute;
	top: 50%;
	right: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -20px;
    transition: all 0.3s;
}
.our-pro-cnt.owl-carousel .owl-nav .owl-next span{
	height: 20px;
    width: 20px;
    display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}
.our-pro-cnt.owl-carousel .owl-nav .owl-prev.disabled,
.our-pro-cnt.owl-carousel .owl-nav .owl-next.disabled{display: none;}
.our-pro-cnt.owl-carousel .owl-nav .owl-prev:hover,
.our-pro-cnt.owl-carousel .owl-nav .owl-next:hover{
	background: #000;
}
.our-pro-cnt.owl-carousel .owl-nav .owl-prev:hover span,
.our-pro-cnt.owl-carousel .owl-nav .owl-next:hover span{
	border-color: #ffffff;
}
.our-pro-cnt .ovly{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: transparent -webkit-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	background: transparent -o-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	transition: all 0.3s;
}
.our-pro-cnt .pop-btn{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.our-pro-cnt .btn-hldr{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 35px;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}
.our-pro-cnt .our-pro-ech:hover img{
	transition: all 0.3s;
    transform: scale(1.1);
}
.enquiry-form{
	background: #E6ECF0;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	width: 300px;
	padding: 15px 25px 25px 20px;
	margin-bottom: 50px;
}
.enquiry-form .ech-row{margin-bottom: 12px;}
.enquiry-form .ech-row:last-child{margin: 20px 0 0 0;}
.enquiry-form legend{
	display: block;
	width: 100%;
	font: 14px/19px 'Open Sans', sans-serif;
	color: #303740;
	margin-bottom: 20px;
}
.enquiry-form legend b{
	font-size: 21px;
	font-weight: 700;
}
.our-projects{
	position: relative;
	width: 300px;
	margin-right: 45px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.our-pro-hldr h2{margin-bottom: 15px;}
.our-projects h2{
	font-size: 20px;
    color: #244e80;
    font-weight: normal;
    text-transform: uppercase;
}
.arrow-btns{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: -50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.arrow-btns .up-btn{
	border: none;
	padding: 0;
	margin: 0 10px;
    height: 40px;
    width: 30px;
    transform: rotate(90deg);
    transition: all 0.3s;
}
.arrow-btns .up-btn span{
	height: 20px;
    width: 20px;
	display: block;
	border-style: solid;
    border-color: rgba(0, 0, 0, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(135deg);
	transform-origin: 77% 60%;
    transition: all 0.3s;
}
.arrow-btns .down-btn{
	border: none;
	padding: 0;
	margin: 0 10px;
    height: 40px;
    width: 30px;
	transform: rotate(90deg);
    transition: all 0.3s;
}
.arrow-btns .down-btn span{
	height: 20px;
    width: 20px;
    display: block;
	border-style: solid;
    border-color: rgba(0, 0, 0, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}
.arrow-btns .up-btn:hover span,
.arrow-btns .down-btn:hover span{
	border-color: #000000;
}
.arrow-btns .down-btn:disabled,
.arrow-btns .up-btn:disabled{
	opacity: 0.5;
	cursor: not-allowed;
}
.on-going{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	overflow: hidden;
    padding: 0 10px 10px 10px;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-bottom: -10px;
}
.on-going .on-going-lst{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	-ms-align-items: flex-start;
	align-items: flex-start;
	margin-bottom: 20px;
}
.on-going .on-going-lst:last-child{margin: 0;}
.on-going .on-going-lst .info{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	width: 100%;
	height: 100%;
	position: relative;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 3px;
    overflow: hidden;
}
.on-going .on-going-lst .ovly{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: transparent -webkit-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	background: transparent -o-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	transition: all 0.3s;
}
.on-going .on-going-lst .cnt{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 15px;
}
.on-going .on-going-lst .info h6{
	font: 18px/20px 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
}
.on-going .on-going-lst .info p{
	margin-top: 5px;
	font: 12px/16px 'Open Sans', sans-serif;
    color: #ffffff;
}
.on-going .on-going-lst .info .img-hldr{
    height: 225px;
    overflow: hidden;
}
.on-going .on-going-lst .info .img-hldr img{
	display: block;
    width: 100%;
	height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Our Products */

/* Services */
.our-services{
	background: #EFF4F7;
	padding-bottom: 60px;
	padding-top: 65px;
}
.our-services h2{padding-bottom: 50px;}
ul.services-lst{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
ul.services-lst li{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	margin-right: 50px;
}
ul.services-lst li:last-child{margin: 0;}
ul.services-lst li .img-hldr svg{
	display: block;
	height: 100px;
	margin: 0 auto;
}
ul.services-lst li h6{
	text-transform: capitalize;
	font: 16px/22px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #3DB9B4;
}
ul.services-lst li p{
	font: 14px/24px 'Open Sans', sans-serif;
	color: rgba(48, 55, 64, 0.80);
}
/* END Services */

/* About Life Essential */
.abt-lf-ess{
	padding: 50px 0 40px 0;
	background: #EFF4F7;
}
.abt-lf-ess h2{margin-bottom: 25px;}
.abt-lf-ess .abt-lf-ess-hldr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.abt-lf-ess-profile{
	width: 225px;
	margin-right: 40px;
}
.abt-lf-ess-profile .img-hldr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.abt-lf-ess-profile .img-hldr img{
	display: block;
	width: 200px;
	margin: 0 auto;
}
.abt-lf-ess-profile h6{
	text-transform: capitalize;
	font: 18px/24px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #303740;
	margin-bottom: 5px;
	padding-top: 10px;
	border-top: 1px solid #ccc;
}
.abt-lf-ess-profile p{
	font: 14px/24px 'Open Sans', sans-serif;	
	color: #303740;
	text-transform: capitalize;
}
.abt-lf-ess-cnt{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
.abt-lf-ess-cnt h6{
	font: 20px/27px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
	margin: 40px 0 25px 0;
}
.abt-lf-ess-cnt h6:first-child{margin-top: 0;}
.abt-lf-ess-cnt ul{
	list-style-type: disc;
	margin-left: 17px;
	color: #303740;
}
.abt-lf-ess-cnt li{
	font: 0.9375rem/2em 'Open Sans', sans-serif;
	color: #303740;
}
.abt-lf-ess-cnt .vision-mission{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 40px 0;
}
.abt-lf-ess-cnt .vision{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	padding: 20px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	margin-right: 20px;
	background: #00B9B8;
}
.abt-lf-ess-cnt .mission{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	padding: 20px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	background: #28507C;
}
.abt-lf-ess-cnt .vision-mission h6,
.abt-lf-ess-cnt .vision-mission p{
	color: #ffffff;
	margin-top: 0;
    margin-bottom: 15px;
}
.abt-lf-ess-cnt .vision-mission p{
	font-size: 14px;
    line-height: 25px;
}
/* END About Life Essential */

/* Projects */
.projects{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #0c2b50;
}
.projects h2{color: #ffffff;}
.projects h2 br{display: none;}
.projects-lst{
	width: auto;
	margin: 25px 40px 0 40px;
}
.projects-lst.owl-carousel .owl-nav .owl-prev{
	position: absolute;
	top: 50%;
	left: 15px;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -28px;
    transition: all 0.3s;
}
.projects-lst.owl-carousel .owl-nav .owl-prev span{
	height: 20px;
    width: 20px;
	display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(135deg);
	transform-origin: 77% 60%;
    transition: all 0.3s;
}
.projects-lst.owl-carousel .owl-nav .owl-next{
	position: absolute;
	top: 50%;
	right: 15px;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -28px;
    transition: all 0.3s;
}
.projects-lst.owl-carousel .owl-nav .owl-next span{
	height: 20px;
    width: 20px;
    display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}
.projects-lst.owl-carousel .owl-nav .owl-prev.disabled,
.projects-lst.owl-carousel .owl-nav .owl-next.disabled{display: none;}
.projects-lst.owl-carousel .owl-nav .owl-prev:hover,
.projects-lst.owl-carousel .owl-nav .owl-next:hover{
	background: #000000;
}
.projects-lst.owl-carousel .owl-nav .owl-prev:hover span,
.projects-lst.owl-carousel .owl-nav .owl-next:hover span{
	border-color: #ffffff;
}
.projects .link-btn{
	line-height: 35px;
	color: #ffffff;
}
.projects .link-btn:hover{color: #E82836;}
.projects .link-btn svg path{fill: #ffffff;}
.projects .link-btn:hover svg path{fill: #E82836;}
.projects-lst .img-hldr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	position: relative;
	height: 450px;
}
.projects-lst .img-hldr:before{
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.50);
	display: block;
	position: absolute;
	top: 15px;
	bottom: 15px;
	right: 15px;
	left: 15px;
}
.projects-lst .img-hldr img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.projects-lst h6{
	font: 14px/19px 'Open Sans', sans-serif;
	color: #ffffff;
}
/* END Projects */

/* Clientele */
.clientele{padding: 80px 0 60px 0;}
.clientele-list{
	padding: 20px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	max-width: 88%;
	margin: 0 auto;
}
.clientele-list li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 20%;
	border-bottom: 1px solid #cccccc;
	height: 100px;
	position: relative;
}
.clientele-list li:last-child:after{
	content: '';
	display: block;
	height: 100%;
	border-right: 1px solid #cccccc;
	position: relative;
    right: -1px;
}
.clientele-list li:before{
	content: '';
	display: block;
	height: 100%;
	border-right: 1px solid #cccccc;
}
.clientele-list li:nth-child(5n+1):before{display: none;}
.clientele-list li:nth-child(n+21){border-bottom: none;}
.clientele-list li:nth-child(21):before{
	content: '';
	display: block;
	height: 100%;
	border-right: 1px solid #cccccc;
}
.clientele-list li img{
	display: block;
	margin: 0 auto;
	max-width: 150px;
	max-height: 80px;
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
	opacity: 0.8;
}
/* END Clientele */
/* END Container */

/* Footer */
#ContactUs{background: #F2F2F2;}
#ContactUs .wrapper{padding: 35px 0 50px 0;}
#ContactUs .foot{
	background: #293B50;
	text-align: center;
	padding: 15px 0;
	font: 0.875rem/1.35715em 'Open Sans', sans-serif;
	color: #FFFFFF;
}
#ContactUs ul.contact-lst{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 35px 0 25px 0;
}
#ContactUs ul.contact-lst li{
	border-right: 1px solid #3DB9B4;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	font: 14px/19px 'Open Sans', sans-serif;
	color: #28507C;
	margin-right: 60px;
	padding-right: 30px;
}
#ContactUs ul.contact-lst li:last-child{
	border: none;
	padding: 0;
	margin: 0;
}
#ContactUs ul.contact-lst li:last-child{width: 300px;}
#ContactUs ul.contact-lst li .img-hldr{
	display: block;
	width: 40px;
}
#ContactUs ul.contact-lst li .img-hldr svg{
	display: block;
	margin-right: 15px;
}
#ContactUs ul.contact-lst li .img-hldr svg path{fill: #28507C;}
#ContactUs ul.contact-lst li .ech-lst{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin: 5px 0;
}
#ContactUs ul.contact-lst li a{
	font: 14px/19px 'Open Sans', sans-serif;
	color: #28507C;
	transition: all 0.3s;
}
#ContactUs ul.contact-lst li a:hover{color: #E82836;}
/* END Footer */

/* Inner Page */
#container.end-gap{padding: 0 0 60px 0;}
#container.no-gap{padding: 0;}
.inner-page #header .contact-num{
	position: relative;
	border-radius: 44px;
	padding: 10px 25px 10px 15px;
}
.inner-page #header nav{position: relative;}
.inner-page #header .wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	max-width: 950px;
	margin: 0 auto;
	padding: 0;
}
#banner{
	background: #ffffff url('../images/Water-&-Waste-Water-Solution-bg.jpg') no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 40px;
	position: fixed;
	top: 113px;
	z-index: 11;
	width: 100%;
    max-width: 1600px;
    transition: all 0.3s;
}
.banner-sticky #banner{
	position: fixed;
	top: 73px;
	padding-top: 20px;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
	transition: all 0.3s;
}
.banner-sticky #banner .banner-cnt{
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	transition: all 0.3s;
}
.banner-sticky #banner .banner-heading{margin: 0;}
.banner-sticky #inner-main{margin-top: 180px;}
.inner-page #inner-main{padding-top: 340px;}
.explore-page.inner-page #inner-main{padding-top: 280px;}
.banner-sticky .inner-page #inner-main{padding-top: 0;}
#banner .banner-cnt{transition: all 0.3s;}
#banner .banner-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) no-repeat;
	transition: all 0.3s;
}
.banner-sticky #banner .banner-overlay{opacity: 0;}
#banner .wrapper{
	position: relative;
	z-index: 1;
}
#banner ul.breadcrump li{
	display: block;
	float: left;
	font: 16px/20px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	border-right: 2px solid #ffffff;
	padding-right: 15px;
	margin-right: 15px;
}
#banner ul.breadcrump li:last-child{
	margin: 0;
	padding: 0;
	border: none;
}
#banner ul.breadcrump li a{
	display: block;
	font: 16px/20px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s;
}
#banner ul.breadcrump li a:hover{color: #EB242F;}
#banner ul.breadcrump li a svg{margin-right: 5px;}
#banner ul.breadcrump li a svg path{
	fill: #ffffff;
	transition: all 0.3s;
}
#banner ul.breadcrump li a:hover svg path{fill: #EB242F;}
.desktop-home{
	display: block;
	font: 16px/20px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
	visibility: hidden;
	opacity: 0;
}
.desktop-home:hover{color: #EB242F;}
.desktop-home svg{margin-right: 5px;}
.desktop-home path{
	fill: #ffffff;
	transition: all 0.3s;
}
.desktop-home:hover path{fill: #EB242F;}
.banner-sticky .desktop-home{
	opacity: 1;
	visibility: visible;
}
#banner .leave-msg{
	font: 15px/21px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
	margin: 10px 10px 0 0;
	text-align: right;
}
#banner .banner-heading{
	margin-top: 40px;
	transition: all 0.3s;
}
#banner .banner-heading h2{
	font: 28px/37px 'Open Sans', sans-serif;
	font-weight: 300;
	color: #FFFFFF;
	border-bottom: 4px solid #EB202C;
	padding: 0 5px 3px 4px;
}
#inner-main{
	padding: 40px 0;
	transition: all 0.3s;
}
#inner-main .heading{
	font: 26px/35px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
}
#inner-main ul.article-lst{margin-top: 40px;}
#inner-main ul.article-lst > li{
	margin-bottom: 90px;
	border-bottom: 1px solid #cccccc;
    padding-bottom: 90px;
}
#inner-main ul.article-lst > li:last-child{
	padding: 0;
	border: none;
}
#inner-main ul.article-lst h6{
	font: 20px/27px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
}
#inner-main .article-cnt{
	margin-top: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
#inner-main .img-hldr{
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	overflow: hidden;
	width: 490px;
	margin-right: 30px;
}
#inner-main .img-hldr img{display: block;}
#inner-main .cnt-hldr{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
#inner-main .cnt-hldr h6{
	font: 18px/24px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
	margin-bottom: 15px;
}
#inner-main .cnt-hldr ul{
	margin-left: 17px;
	color: #303740;
}
#inner-main .cnt-hldr ol{
	margin-left: 17px;
	color: #303740;
}
#inner-main .cnt-hldr li{
	font: 15px/30px 'Open Sans', sans-serif;
	color: #303740;
	position: relative;
}
#inner-main .cnt-hldr li:before{
	content: '';
	width: 7px;
	height: 7px;
	background: #00b9b8;
	display: block;
	position: absolute;
	left: -15px;
    top: 13px;
}
#inner-main .cnt-hldr li sup{
	vertical-align: super;
	font-size: 13px;
	display: inline-block;
	margin-top: -4px;
}
#inner-main .cnt-hldr li b{font-weight: 700;}
#inner-main ul.article-lst > li:nth-child(even) .article-cnt{
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
#inner-main ul.article-lst > li:nth-child(even) .article-cnt .img-hldr{margin: 0 0 0 30px;}
.fix-breadcrump{
	position: fixed;
	bottom: 0;
	width: 100%;
	max-width: 1600px;
	box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.10);
	background: #FFFFFF;
	padding: 20px 0;
}
.fix-breadcrump .wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fix-breadcrump h6{
	font: 14px/20px 'Open Sans', sans-serif;
	color: #1DB9B7;
	margin-right: 35px;
}
.fix-breadcrump ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
.fix-breadcrump ul li{
	font: 14px/20px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #BEBEBE;
	margin-right: 40px;
}
.fix-breadcrump ul li a{
	font: 14px/20px 'Open Sans', sans-serif;
	font-weight: 700;
	color: #000000;
	transition: all 0.3s;
}
.fix-breadcrump ul li a:hover{color: #E82836;}
/* END Inner Page */

/* Popup */
.popup{
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
.popup.opened{
	opacity: 1;
	visibility: visible;
}
.popup-ovly{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	opacity: 0.98;
	transition: all 0.5s;
}
.popup-close{
	cursor: pointer;
	width: 125px;
	height: 60px;
	border-radius: 60px 60px 0 0;
	background: #BEBEBE;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	transform: translateY(100%);
}
.open .popup-close{transform: translateY(0);}
.popup-close:hover{
	background: #a9a6a6;
	transform: scale(1.1);
}
.popup-close svg{
	display: block;
	margin-top: 10px;
}
.popup .popup-heading{
	width: 100%;
	padding: 90px 0 60px 0;
}
.popup .popup-heading h6{	
	text-transform: uppercase;
	font: 28px/37px 'Open Sans', sans-serif;
	font-weight: 600;
	text-align: center;
	color: #303740;
}
.popup .popup-main{
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.popup .popup-sld-one{
	width: 100%;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	display: block;
}
.popup .popup-sld-one .owl-stage{
	padding: 30px 20px;
	min-width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.popup .popup-sld-one .popup-sld-ech{
	position: relative;	
	width: 400px;
	height: 300px;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
}
.popup .popup-sld-one .popup-sld-ech .pop-btn{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.popup .popup-sld-one .popup-sld-ech .ovly{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: transparent -webkit-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(#00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    transition: all 0.3s;
}
.popup .popup-sld-one .popup-sld-ech .img-hldr{
	position: relative;
	height: 300px;
}
.popup .popup-sld-one .popup-sld-ech img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}
.popup .popup-sld-one .popup-sld-ech .btn-hldr{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.popup .popup-sld-one .owl-dots{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.popup .popup-sld-one .owl-dots .owl-dot{
	display: block;
	width: 10px;
	height: 10px;
	background: #d0d0d0;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s;
}
.popup .popup-sld-one .owl-dots .owl-dot span{
	display: block;
	transition: all 0.3s;
}
.popup .popup-sld-one .owl-dots .owl-dot.active{background: #244e80;}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-prev{
	position: absolute;
	top: 35%;
	left: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -20px;
    transition: all 0.3s;
}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-prev span{
	height: 20px;
    width: 20px;
	display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(135deg);
	transform-origin: 77% 60%;
    transition: all 0.3s;
}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-next{
	position: absolute;
	top: 35%;
	right: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 0;
	margin: 0;	
    height: 40px;
    width: 30px;
    margin-top: -20px;
    transition: all 0.3s;
}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-next span{
	height: 20px;
    width: 20px;
    display: block;
	border-style: solid;
    border-color: rgba(255, 255, 255, 0.50);
    border-width: 0px 2px 2px 0px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-prev.disabled,
.popup .popup-sld-one.owl-carousel .owl-nav .owl-next.disabled{display: none;}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-prev:hover,
.popup .popup-sld-one.owl-carousel .owl-nav .owl-next:hover{
	background: #000;
}
.popup .popup-sld-one.owl-carousel .owl-nav .owl-prev:hover span,
.popup .popup-sld-one.owl-carousel .owl-nav .owl-next:hover span{
	border-color: #ffffff;
}
.popup .popup-back{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
	cursor: pointer;
	font: 14px/19px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #28507C;
	transition: all 0.3s;
}
.popup .popup-back:hover{color: #EB242F;}
.popup .popup-sld-innr-ech{
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
}
.popup .popup-sld-innr-ech .link-btn{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.popup .popup-sld-innr-ech .img-hldr{
	min-width: 260px;
	width: 100%;
	height: 300px;
	margin-bottom: 25px;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
}
.popup .popup-sld-innr-ech img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
	margin: 0 auto;
}
.popup .popup-sld-innr-ech p{
	text-align: center;
	font: 20px/27px 'Open Sans', sans-serif;
	font-weight: 600;
	color: #303740;
}
.sld-one{max-width: 930px;}
.sld-two{max-width: 1275px;}
.sld-three{max-width: 1180px;}
.sld-four{max-width: 860px;}
.sld-five{max-width: 600px;}
/* END Popup */

.enquiry-form.success{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	width: 400px;
}
.enquiry-form.success form{display: none;}
.enquiry-form .success-msg{
	display: none;
	margin: 20px 0;
}
.enquiry-form.success .success-msg{display: block;}
.success-msg h6{
	text-align: center;
	font: 16px/25px 'Open Sans', sans-serif;
    color: #244e80;
	font-weight: 700;
	margin-bottom: 20px;
}
.success-msg .primary-btn{
	display: block;
	margin: 0 auto;
}
.enquiry-form.error{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.enquiry-form.error form{display: none;}
.enquiry-form .error-msg{
	display: none;
	margin: 20px 0;
}
.enquiry-form.error .error-msg{display: block;}
.error-msg h6{
	text-align: center;
	font: 16px/25px 'Open Sans', sans-serif;
    color: #FF0000;
	font-weight: 700;
	margin-bottom: 20px;
}
.error-msg .primary-btn{
	display: block;
	margin: 0 auto;
}
.enquiry-popup{
	transform: scale(0.8);
	width: 100%;
	height: 100%;
}
.enquiry-form-hldr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	height: 100%;
}
.popup_visible .enquiry-popup{transform: scale(1);}
.enquiry-popup .popup-close{
	position: fixed;
	bottom: 0;
	left: 50%;
	margin-left: -62.5px;
	transform: none;
}
/* Loader */
.loader{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	background: rgba(255, 255, 255, 0.60);
	opacity: 0.98;
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
}
.loader .circular{
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.loader .path{
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
	stroke: #ffffff;
}
.loader.login-loader .path{stroke: #ffffff;}
/* END Loader */

/* Unit Gallary */
.gallery-hldr{
	padding: 20px 0;
	margin: 0 -20px 0 -20px;
}
.ug-thumb-wrapper.ug-tile .ug-tile-icon.ug-icon-zoom {
    background-image: url('../images/unitgallery/icon-zoom32.png');
}
.ug-lightbox .ug-lightbox-button-close{
	background-image: url(../images/unitgallery/lightbox-icon-close.png);
}
.ug-slider-preloader.ug-loader3.ug-loader-black {
    background-image: url(../images/unitgallery/loader-black3.gif);
}
.ug-lightbox .ug-lightbox-button-close{
	background-image: url(../images/unitgallery/lightbox-icon-close.png);
}
.ug-lightbox .ug-lightbox-arrow-left,
.ug-lightbox .ug-lightbox-arrow-right{
	background-image: url(../images/unitgallery/lightbox-arrow-left.png);
}
.ug-lightbox .ug-lightbox-arrow-right {
    background-image: url(../images/unitgallery/lightbox-arrow-right.png);
}
.ug-slider-wrapper .ug-button-videoplay.ug-type-square{	
	background-image: url('../images/unitgallery/play-button-square.png');
}
.ug-gallery-wrapper .ug-overlay-disabled{
	background-image: url('../images/unitgallery/cover-grid.png');
}
.ug-gallery-wrapper .ug-preloader-trans{
	background-image: url('../images/unitgallery/loader_skype_trans.gif');
}
.ug-slider-preloader.ug-loader1.ug-loader-black{
	background-image: url('../images/unitgallery/loader-black1.gif');	
}
.ug-gallery-wrapper .ug-videoplayer{
	background-image: url('../images/unitgallery/loader-black1.gif');
}
.ug-videoplayer .ug-videoplayer-wrapper{
	background-image: url('../images/unitgallery/loader-black1.gif');
}
.ug-tile .ug-textpanel-title{
	font: 14px/20px 'Open Sans', sans-serif;
	color: #ffffff;
	font-weight: 700;
}
.ug-lightbox .ug-textpanel-title,
.ug-lightbox .ug-textpanel-description{
	font: 14px/20px 'Open Sans', sans-serif;
	color: #ffffff;
}
.ug-item-wrapper img{
	max-width: 100%;
	max-height: 100%;
}
/* END Unit Gallary */

/* Loader Animation */
@-webkit-keyframes rotate {
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
/* END Loader Animation */