
/*================================== 
LINKING FONT FAMILY 
==================================*/

@font-face {
    font-family: 'proxima_novabold';
    src: url('../fonts/proxima_nova_bold-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*================================== 
OVERRIDING CSS 
==================================*/

body {
    font-family: 'proxima_novaregular';
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: 'proxima_novabold';
}

h1 {
	font-size: 50px;
}

ul,
li {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

p {
	margin: 0;
	color: #555;
}

a {
	text-decoration: none;
	color: #555;
}

a:hover,
a:focus {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.site-btn {
    background: #00a651;
    color: #fff;
    border-radius: 0px;
    border: none;
    box-shadow: none;
    padding: 12px 24px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.site-btn:focus {
	box-shadow: none;
}

.site-btn:hover,
.site-btn:focus {
	background: #04984c;
	color: #fff;
}

.section-title {
	font-size: 32px;
	margin: 0 0 20px;
	color: #3c6373;
}

.thumbnail-img {
	position: relative;
	overflow: hidden;
}


/*================================== 
TOPHEADER CSS 
==================================*/

.topheader {
	background: #00a651;
}

.topheader-left ul {
	padding: 10px 0;
}

.topheader-left ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #eee;
	font-size: 15px;
	color: #ffffff;
}

.topheader-left ul li i {
	margin-right: 5px;
	color: #fff;
}

.topheader-left ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}

.topheader-right {
	text-align: right;
}

.topheader-right .chooselang {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.topheader-right .chooselang p {
	font-size: 14px;
}

.topheader-right .chooselang p a {
    margin-left: 10px;
    border-left: 1px solid #ddd;
    padding-left: 10px;
}

.topheader-right .chooselang p a i {
    color: #00a651;
    padding-right: 5px;
}

.topheader-right .chooselang p a.active {
	text-decoration: underline;
}

.topheader-right .site-btn {
	display: inline-block;
	vertical-align: middle;
    background: #02ca63;
    border-radius: 0px;
    color: #fff;
    font-size: 15px;
    padding: 11px 15px;
}

.topheader-right .site-btn:hover {
	background: #04984c;
	color: #fff;
}

.selectlang {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}

.selectlang span {
	color: red;
}



/*================================== 
SITE HEADER CSS
==================================*/

.site-logo > a {
	display: block;
}

.site-logo > a img {
	max-width: 90px;
}

.site-header {
	padding: 15px 0;
}

.site-navigation ul {
	float: right;
	margin: 35px 0 0;
}

.site-navigation ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

.site-navigation ul li:last-child {
	margin-right: 0px;
}

.site-navigation ul li a {
	display: block;
	position: relative;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.site-navigation ul li a:before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #00a651;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.site-navigation ul li.current-menu-item a,
.site-navigation ul li a:hover {
	color: #00a651;
}

.site-navigation ul li.current-menu-item a:before,
.site-navigation ul li a:hover::before {
	opacity: 1;
	visibility: visible;
}


/*================================== 
HOMEPAGE SLIDER CSS
==================================*/

.homeslider {
	position: relative;
}

.homeslider .slider-item img {
	width: 100%;
}

.homeslider .slider-content {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: #fff;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.homeslider .slider-content .inner {
	width: 70%;
}

.homeslider .slider-content .inner h1 {
	margin: 0 0 15px;
}

.homeslider .slider-content .inner p {
	font-size: 18px;
	color: #f1e9e9;
}

.homeslider .slider-content .inner .site-btn {
	margin: 30px 0 0 ;
}

.slider-item::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.4);
}

.slider-item img {
	width: 100%;
}

.owl-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.owl-nav button {
	height: 40px;
	width: 40px;
	background: #6cb3d0d1 !important;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.owl-nav button:last-child {
	margin-right: 0px;
}

.owl-nav button span {
	color: #fff;
    font-size: 40px;
    line-height: 0;
    margin-top: -3px;
}

.owl-nav button:focus {
	box-shadow: none;
	outline: 0;
}

/*================================== 
HOME WHY US CSS
==================================*/

.whyus {
	padding: 50px 0;
}

.whyus-block {
	padding-left: 110px;
}

.whyus-block span {
	position: absolute;
	top: 0;
	left: 0;
	height: 90px;
	width: 90px;
	background: #d0c4c4;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 40px;
}

.whyus-block h4 {
	color: #3699d6;
	font-size: 22px;
	margin: 0 0 10px;
}

/*================================== 
HOME ABOUT US CSS
==================================*/

.aboutus {
	background: #f7f5f5;
	padding: 60px 0;
}

.aboutus-left p {
	margin: 0 0 15px;
}

.aboutus .site-btn {
	margin: 20px 0 0;
}

.aboutus .thumbnail-img {
	margin-left: 30px;
}


/*================================== 
HOME OUR PRODUCTS CSS
==================================*/

.ourproducts {
	padding: 80px 0;
}

.ourproducts .section-title {
	text-align: center;
	margin: 0 0 40px;
}

.product-block {
    margin: 0 0 20px;
    background: #fff;
}

.product-block .thumbnail-img img {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.product-block:hover .thumbnail-img img {
	transform: scale(1.2,1.2);
}

.product-block h4 {
	margin: 15px 0;
	font-size: 18px;
}

.product-block .site-btn {
	margin: 20px 0 10px;
	padding: 7px 15px;
    font-size: 14px;
}


/*================================== 
OUR PARTNERS CSS
==================================*/

.partners {
	padding: 60px 0;
}

.partners .section-title {
	text-align: center;
	margin: 0 0 40px;
}

.partners .slider-item::before {
	display: none;
}


/*================================== 
SITE FOOTER CSS
==================================*/

.site-footer {
	background: #212529;
    padding: 40px 0;
}

.site-footer p {
    color: #a5a0a0;
    font-size: 15px;
}

.footer-block .thumbnail-img {
	margin: 0 0 10px;
}

.footer-block .thumbnail-img img {
	max-width: 80px;
}

.footer-block h4 {
	color: #fff;
	margin: 0 0 20px;
	font-family: 'proxima_novabold';
}

.footer-block ul li {
	color: #a5a0a0;
	margin: 0 0 8px;
	font-size: 15px;
}

.footer-block ul li i {
	margin-right: 10px;
	color: #00a651;
}

.padr30 {
	padding-right: 30px;
}

.padl30 {
	padding-left: 30px;
}

.footer-block ul li a {
	display: block;
	color: #a5a0a0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.footer-block ul li a:hover {
	color: #fff;
}

.social-icons {
	float: right;
}

.social-icons li {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.social-icons li:last-child {
	margin-right: 0px;
}

.social-icons li a {
	display: block;
	color: #81d5f7;
	font-size: 18px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.social-icons li a:hover {
	color: #00a651;
}

.footer-bottom {
	border-top: 1px solid #3c3939;
    padding: 20px 0 0;
    margin: 20px 0 0;
}