/*-----------------------------------------------------------------
Template Name  : Herbalist - Ayurved and Herbal Products Landing Page
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : herbal, Company
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Upperbar
 4. Navbar
 5. Side Menu
 6. Home
 7. About Us
 8. Features
 9. Services
 10. Product
 11. Facts 
 12. Our Team
 13. FAQ
 14. Testimonials
 15. Blog
 16. Call To Action
 17. Contact
 18. Footer
 19. Scroll To Top
 20. Media Queries
-----------------------------------------------------------------*/

/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

body {
    font-family: 'Rubik', sans-serif;
	background-color: #fff;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus,
a:active {
    color: #fff;
    text-decoration: none;
}

ul {
    margin-bottom: 0;
}

/*=========== Typography ============*/
h1 {
    font-size: 60px;
    font-weight: 800;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 15px;
    font-weight: 400;
}

/*=========== My Classes ============*/

.main-title {
	max-width: 500px;
	margin: auto;
    margin-bottom: 60px;
	text-align: center;
	position: relative;
}

.main-title h2 {
    font-size: 25px;
    color:#03a956;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.main-title h3 {	
    font-size: 30px;
    color: #323232;
    font-weight: 700;
	letter-spacing: -1px;
    line-height: 1.3;
    text-transform: capitalize;
}

.display-table {
    display: table;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    min-height: 100%;
	height: 100vh;
	text-align: center;
}

.main-btn {
	position: relative;
    background:#03a956;
    color: #fff;
    min-width: 150px;
    border-radius: 0 30px 30px; 
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-align: center;
    padding: 12px 20px;
    border: 2px solid#03a956;
    outline: none;
    cursor: pointer;
    margin-right: 14px;
	overflow: hidden;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.main-btn span {
    position: relative;
    z-index: 2;
}

.main-btn:before {
    content: '';
    background-color: #0bb962;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
	-webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    z-index: 1;
}

.main-btn:hover:before {
    width: 190%;
}

.main-btn:hover,
.custom-btn:hover {
	border: 2px solid #0bb962;
}

.custom-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-right: 0;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background-color: #fff;
}

.loading .loading-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 50px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loading .loading-content .inner-item {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color:#03a956;
	border-radius: 50%;
	-webkit-transform: scale(.1);
	-moz-transform: scale(.1);
	-ms-transform: scale(.1);
	-o-transform: scale(.1);
	transform: scale(.1);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	-o-transform-origin: center left;
  	transform-origin: center left;
	-webkit-animation: loading 4s infinite;
	animation: loading 4s infinite;
}

.loading .loading-content .inner-item:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.loading .loading-content .inner-item:nth-of-type(3) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.loading .loading-content .inner-item:nth-of-type(4) {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

.loading .loading-content .inner-item:nth-of-type(5) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
	
	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	
	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}

	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

/* --------------------------------------
   3. Upperbar
-----------------------------------------*/

.upper-bar {
    background-color: #03a956;
}

.upper-bar .inner-bar {
    background-color: #03a956;
	color: #f1f3f1;
	padding: 10px 15px;
}

.upper-bar .inner-bar .contact-bar li {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
}

.upper-bar .inner-bar .contact-bar li a {
	color: #f1f3f1;
}

.upper-bar .inner-bar .contact-bar li i {
	margin-right: 5px;
}

.upper-bar .inner-bar .social-media-bar li {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
}

.upper-bar .inner-bar .social-media-bar li a {
	color: #f1f3f1;
}

/* --------------------------------------
   4. Navbar
-----------------------------------------*/

.header-inner {
	background: #fff;
	z-index: 999;
}

.header-inner.active-nav {
    position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.header-inner .my-logo {
	position: relative;
	top: 9px;
	color: #323232;
	font-size: 45px;
	font-weight: 500;
	display: inline-block;
	font-family: 'Mr De Haviland', cursive;
}

.header-inner .my-logo .flaticon-orchid:before {
    margin-left: 0; 
    font-size: 38px;
    color:#03a956;
    margin-right: 10px;
}

.header-inner .menu-toggle {
    background:#03a956;
    border-radius: 3px;
	float: right;
	padding: 8px;
    margin: 20px 0;
	border: none;
    outline: none;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.header-inner .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
}

.header-inner .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.header-inner.menu-active .menu-toggle .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.header-inner.menu-active .menu-toggle .bar:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.header-inner.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.header-inner .main-menu {
	position: relative;
}

.header-inner .nav-search {
	position: relative;
	float: right;
	line-height: 78px;
	margin-left: 40px;
	padding-left: 0;
}

.header-inner .nav-search > li {
	display: inline-block;
	margin-right: 14px;
}

.header-inner .nav-search > li:last-child {
	margin-right: 0;
}

.header-inner .nav-search > li > a {
	color: #323232;
	font-size: 19px;
	font-weight: 200;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .nav-search > li > a.fa-shopping-cart {
	position: relative;
}

.header-inner .nav-search > li > a.fa-shopping-cart .cart-total {
	position: absolute;
    top: -6px;
    right: -11px;
    font-size: 11px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    line-height: 19px;
    text-align: center;
    background: #fd5454;
    border-radius: 50%;
    color: #fff;
}

.header-inner .nav-search > li.shopping-cart .mini-cart {
	position: absolute;
    top: 125%;
    right: 0;
    width: 320px;
    background: #fff;
	border:1px solid #eae9e9;
    border-top: 2px solid#03a956;
    padding: 15px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.header-inner .nav-search > li.shopping-cart:hover .mini-cart {
	top: 100%;
	visibility: visible;
    opacity: 1;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-item {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-image {
	float: left;
	width: 35%;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-image img {
	border: 1px solid #d3fbeb;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info {
	float: left;
	width: 60%;
	margin-left: 5%;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #323232;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info h4:hover {
    color:#03a956;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .price {
	color:#03a956;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-top: 8px;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .product-options {
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 1;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .product-options .fa-trash-o {
    display: inline-block;
    color: #323232;
    margin-right: 8px;
    font-size: 16px;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .quantity {
    display: inline-block;
    line-height: 1;
    margin-right: 8px;
    color: #323232;
    font-size: 16px;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .plus {
    color: #323232;
    font-size: 16px;
	cursor: pointer;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .product-options .fa-trash-o:hover,
.header-inner .nav-search > li.shopping-cart .mini-cart .cart-info .plus:hover {
    color:#03a956;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .subtotal {
	display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #323232;
	padding-top: 10px;
    border-top: 1px solid #f2f3f2;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .subtotal h3 {
    font-size: 14px;
    font-weight: 500;
	line-height: 1;
	font-family: 'Rubik', sans-serif;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .subtotal span {
	line-height: 1;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-btns {
	margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-btns .main-btn {
	min-width: 134px;
	line-height: 1;
}

.header-inner .nav-search > li.shopping-cart .mini-cart .cart-btns .mr-0 {
	margin-right: 0 !important;
}

.header-inner .nav-search > li > a:hover {
	color:#03a956;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .search-form {
	position: absolute;
    top: 79px;
    right: 0;
    width: 295px;
    padding: 12px;
	background: #fff;
    border-top: 2px solid#03a956;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	opacity: 0;
    visibility: hidden;
    z-index: 9999;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .search-form.active {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
}

.header-inner .search-form input[type="search"] {
	background: #f7f7fb;
    color: #353535;
    width: 100%;
    height: 50px;
    padding: 0 50px 0 18px;
    border: none;
	border-radius: 0 25px 25px;
    outline: none;
	font-size: 14px;
    font-weight: 500;
}

.header-inner .search-form .search-btn {
	position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background:#03a956;
    color: #fff;
    cursor: pointer;
    outline: none;
    border: none;
	border-radius: 0 25px 25px 0;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .search-form .search-btn:hover {
    background: #03a956;
}

.header-inner .navbar {
	float: right;
	padding: 0;
}

.header-inner .navbar .nav > li {
	position: relative;
	margin-right: 15px;
}

.header-inner .navbar .nav li:last-child {
	margin-right: 0;
}

.header-inner .navbar .nav li a {
    display: block;
    color: #323232;
    padding: 30px 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .navbar .nav li.active a,
.header-inner .navbar .nav li:hover a {
	color:#03a956;
}

.header-inner .navbar .nav li a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background:#03a956;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-inner .navbar .nav li:hover a:before,
.header-inner .navbar .nav li.active a:before {
	width: 100%;
}

.header-inner .navbar .nav li a i {
	margin-left: 5px;
	font-weight: 600;
}

.header-inner .navbar .nav .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 225px;
	padding: 0;
	background: #fff;
	border-bottom: 3px solid#03a956;
	list-style: none;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: 0 0;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header-inner .navbar .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
    -webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header-inner .navbar .nav li .dropdown li a {
	background: transparent;
	color: #8e8d8d;
	padding: 12px 15px;
    border-bottom: 1px solid #f3f1f1;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .navbar .nav li .dropdown li a:hover {
	background: #f7f7fb;
	padding-left: 18px;
	border-bottom: 1px solid#03a956;
}

.header-inner .navbar .nav li .dropdown li a:before {
	display: none;
}

/* --------------------------------------
   5. Side Menu
-----------------------------------------*/

.side-menu {
    position: fixed;
    top: 0;
	right: -100%;
	width: 400px;
	height: 100vh;
	padding: 30px 20px;
	background-color: #fff;
	color: #323232;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	z-index: 99999;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.side-menu.open {
	right: 0;
}

.side-menu .side-menu-close i:before {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 15px;
    color: #323232;
    font-weight: 800;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.side-menu .side-menu-close i:hover:before {
    color: #777;
}

.side-menu .my-logo {
    color: #323232;
    font-size: 61px;
    font-weight: 500;
    display: inline-block;
    padding-top: 30px;
    font-family: 'Mr De Haviland', cursive;
}

.side-menu .my-logo .flaticon-orchid:before {
    margin-left: 0;
    font-size: 45px;
    color:#03a956;
    margin-right: 12px;
	position: relative;
    top: -3px;
}

.side-menu .side-info p {
    font-size: 16px;
    line-height: 1.8;
    margin: 25px 0 30px;
}

.side-menu .gallery-list {
    max-width: 285px;
	margin: auto;
}

/* --------------------------------------
   6. Home
-----------------------------------------*/

.home {
    position: relative;
    overflow: hidden;
	height: 100vh;
}

.home .owl-carousel {
    height: 100vh;
}

.home .bg-cover {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.home .owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.home .owl-carousel .owl-nav .owl-next,
.home .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 44px;
    text-align: center;
    background-color: rgba(23, 24, 25, .5);
	border-radius: 50%;
	outline: none;
	z-index: 999;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.home .owl-carousel .owl-nav .owl-next {
    right: 10px;
}

.home .owl-carousel .owl-nav .owl-prev {
    left: 10px;
}

.home .owl-carousel .owl-nav .owl-next:hover,
.home .owl-carousel .owl-nav .owl-prev:hover {
    background-color:#03a956;
}

.home .overlay {
	background-color: rgba(0, 0, 0, .5);
	height: 100%;
}

.home .home-content h5 {
	color: #f5f3f3;
    font-size: 65px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
	font-family: 'Mr De Haviland', cursive;
}

.home .home-content p {
    color: #f5f3f3;
    line-height: 1.6;
	letter-spacing: .3px;
    margin-bottom: 30px;
}

.home .home-content h1 {
	color: #f5f3f3;
    font-size: 65px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
    line-height: 1.2;
}

.home .home-content .custom-btn {
    margin-right: 14px;
}

/*-------- Home Demo2 --------*/

.home.demo2 {
	background: url("../images/demo2.html") center center no-repeat;
	background-size: cover;
	position: relative;
}

.home.demo2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(4, 47, 29, .9);
}

.home.demo2 .home-content h5,
.home.demo2 .home-content p {
    color: #f7f5f5;
	text-align: left;
}

.home.demo2 .home-content h1 {
    color: #fff;
	text-align: left;
}

.home.demo2 .home-content .my-btn {
	text-align: left;
}

.home.demo2 .home-image {
    position: absolute;
    right: -20px;
    bottom: 0;
}

/* --------------------------------------
   7. About Us
-----------------------------------------*/

.about-us {
    padding-top: 100px;
    padding-bottom: 100px;
	overflow: hidden;
}

.about-us .about-image {
    position: relative;
	padding: 30px 0 0 30px;
}

.about-us .about-image:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    background:#03a956;
    z-index: -1;
	border-radius: 0 25px 25px;
}

.about-us .about-image img {
	border-radius: 0 25px 25px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, .05);
}

.about-us .info {
    display: flex;
	align-items: center;
}

.about-us .about-info h3 {
    font-size: 17px;
    letter-spacing: .4px;
    color:#03a956;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-us .about-info h4 {
    font-size: 25px;
    color: #323232;
    font-weight: 700;
    line-height: 1.3;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.about-us .about-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #777676;
    margin-bottom: 25px;
}

.about-us .about-info .service-item {
    margin-bottom: 30px;
}

.about-us .about-info .service-item .service-icon {
    position: relative;
}

.about-us .about-info .service-item .service-icon:before {
        content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: 30px;
    left: 30px;
    background:#03a956;
    opacity: .14;
    z-index: -1;
    border-radius: 0 8px 8px;
}

.about-us .about-info .service-item .service-icon i:before {
    display: block;
	width: 70px;
    margin: 0;
    font-size: 65px;
    color:#03a956;
	line-height: 1;
}

.about-us .about-info .service-item .service-description {
    padding-left: 25px;
}

.about-us .about-info .service-item .service-description .service-title {
    font-size: 20px;
    color: #323232;
    font-weight: 700;
    line-height: 1.9;
    text-transform: capitalize;
	margin-bottom: 0;
}

.about-us .about-info .service-item .service-description p {
    margin-bottom: 0;
}

/* --------------------------------------
   8. Features
-----------------------------------------*/

.features {
	background-color: #f9f8f8;
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
	overflow: hidden;
}

.features .icon-bg {
	position: absolute;
	top: 5px;
	right: 0;
	width: 170px;
	opacity: .9;
}

.features .flaticon-leaves:before {
	position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.features .feature:not(:last-of-type) {
	margin-bottom: 30px;
}

.features .feature .feature-icon {
    position: relative;
}

.features .feature .feature-icon:before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: 30px;
    left: 30px;
    background:#03a956;
    opacity: .14;
    z-index: 1;
    border-radius: 0 8px 8px;
}

.features .feature .feature-icon img {
	position: relative;
    margin: 0;
    z-index: 2;
}

.features .feature .feature-description {
    padding-left: 30px;
}

.features .feature .feature-description h4 {
    font-size: 20px;
    color: #323232;
    font-weight: 700;
    line-height: 1.9;
    text-transform: capitalize;
    margin-bottom: 0;
}

.features .feature .feature-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #777676;
    margin-bottom: 0;
}

.features .features-image {
	position: relative;
}

.features .features-image img {
    border-radius: 50%;
	padding: 10px;
}

.features .features-image .small-image {
	position: absolute;
	bottom: -10px;
    left: 31px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    padding: 4px;
    background: #f7f6f6;
}

/* --------------------------------------
   9. Services
-----------------------------------------*/

.services {
	background-color: #f9f8f8;
	position: relative;
    padding-top: 100px;
	overflow: hidden;
}

.services .icon-bg {
	position: absolute;
	top: 5px;
	right: 0;
	width: 170px;
	opacity: .9;
}

.services .flaticon-leaves:before {
	position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.services .service-item {
    margin-bottom: 30px;
	text-align: center;
}

.services .service-item .service-icon {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.services .service-item .service-icon:before {
    content: '';
    width: 70px;
    height: 42px;
    position: absolute;
    top: 16px;
    left: -11px;
    background:#03a956;
    opacity: .14;
    z-index: 1;
    border-radius: 50%;
}

.services .service-item .service-icon img {
    width: 50px;
    height: 50px;
}

.services .service-item .service-icon span {
    position: absolute;
    top: 0;
    left: -26px;
    width: 25px;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background:#03a956;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.services .service-item h3 {
	font-size: 20px;
    color: #323232;
    font-weight: 700;
    line-height: 1.9;
    text-transform: capitalize;
    margin-bottom: 0;
}

.services .service-item p {
	font-size: 15px;
    line-height: 1.7;
    color: #777676;
}

.services .service-image {
	position: absolute;
	bottom: 0;
}

/* --------------------------------------
   10. Products
-----------------------------------------*/

.products {
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.products .slick-arrow {
    position: absolute;
    top: 50%;
    left: 15px;
    right: auto;
    transform: translateY(-50%);
    background-color: #ddd;
    color: #323232;
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    visibility: hidden;
    opacity: 0;
	cursor: pointer;
	z-index: 9;
    transition: all .3s ease-in-out;
}

.products .slick-arrow:hover {
    background-color:#03a956;
    color: #fff;
}

.products .slick-arrow:focus {
    outline: none;
}

.products:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}

.products .slick-arrow.slick-next {
    right: 15px;
    left: auto;
}

.products:hover .slick-arrow.slick-prev {
    left: 0;
}

.products:hover .slick-arrow.slick-next {
    right: 0;
}

.products .slick-slide:focus,
.products .slick-slide a {
    outline: none;
}

.products .slick-slide > div {
    margin: 0 10px;
}

    .products .product-items .single-product {
        /*width: 25%!important;*/
        padding: 20px 15px;
        border: 1px solid #f3f3f3;
        margin-top: 30px;
    }

.products .product-items .single-product .product-image {
	position: relative;
}

.products .product-items .single-product .product-image a {
	display: block;
}

.products .product-items .single-product .product-image a img {
	width: 100%;
}

.products .product-items .single-product .product-image .discount {
	position: absolute;
    top: 0;
	left: 0;
    background-color:#03a956;
    color: #fff;
	text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 0 30px 30px;
}

.products .product-items .single-product .product-image .new {
	position: absolute;
    top: 0;
	left: 0;
    background-color: #f35141;
    color: #fff;
	min-width: 78px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 0 30px 30px;
}

.products .product-items .single-product .product-image .action-links {
    position: absolute;
	bottom: -10px;
	left: 0;
    text-align: center;
    width: 100%;
    opacity: 0;
	z-index: -1;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.products .product-items .single-product:hover .product-image .action-links {
	transform: translateY(-20px);
    opacity: 1;
	z-index: 1;
}

.products .product-items .single-product .product-image .action-links a {
    display: inline-block;
	width: 40px;
	height: 40px;
    line-height: 40px;
    background-color: #555;
	color: #fff;
    font-size: 17px;
    margin-right: 2px;
    border-radius: 0px 10px 10px;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.products .product-items .single-product .product-image .action-links a:hover {
	background-color:#03a956;
	color: #fff;
}

.products .product-items .single-product .product-info {
	position: relative;
	padding-top: 20px;
    text-align: center;
    border-top: 1px solid #f3f3f3;
}

.products .product-items .single-product .product-info:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: scale(0);
    border-top: 1px solid#03a956;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.products .product-items .single-product:hover .product-info:before {
	transform: scale(1);
}

.products .product-items .single-product .product-info h3 {
	font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.products .product-items .single-product .product-info h3 a {
	color: #323232;
    font-weight: 600;
    font-size: 17px;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.products .product-items .single-product .product-info h3:hover a {
	color:#03a956;
}

.products .product-items .single-product .product-info .product-price {
	margin-top: 7px;
}

.products .product-items .single-product .product-info .product-price span {
	display: inline-block;
	margin: 0 7px;
	font-size: 14px;
}

.products .product-items .single-product .product-info .product-price .old-price {
	color: #848383;
	text-decoration: line-through;
}

.products .product-items .single-product .product-info .product-price .new-price {
	color:#03a956;
}

/* --------------------------------------
   11. Facts
-----------------------------------------*/

.facts {
	background-color: #f9f8f8;
	position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
}

.facts:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 447px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.02;
}

.facts .flaticon-leaves:before {
    position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.facts .facts-info h3 {
	font-size: 17px;
    letter-spacing: .4px;
    color:#03a956;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.facts .facts-info h4 {
	font-size: 25px;
    color: #323232;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.facts .facts-info p {
	font-size: 15px;
    line-height: 1.7;
    color: #777676;
    margin-bottom: 25px;
}

.facts .facts-boxes .facts-box {
	position: relative;
    background:#03a956;
    color: #fff;
    text-align: center;
    padding: 35px 20px;
	border-radius: 0 25px 25px;
	width: 100%;
    margin-bottom: 30px;
}

.facts .facts-boxes .facts-box.two {
    background: #23c976;
}

.facts .facts-boxes .facts-box.three {
    background: #1a9155;
}

.facts .facts-boxes .facts-box .flaticon-leaves:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 114px;
    color: #fff;
    opacity: .1;
    z-index: 1;
}

.facts .facts-boxes .facts-box.two .flaticon-leaves:before {
    opacity: .08;
}

.facts .facts-boxes .facts-box.three .flaticon-leaves:before {
    opacity: .06;
}

.facts .facts-boxes .facts-box .number {
	position: relative;
	z-index: 2;
	display: block;
	font-size: 47px;
	font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
	font-family: 'Quicksand', sans-serif;
}

.facts .facts-boxes .facts-box h3 {
	position: relative;
	z-index: 2;
	font-size: 17px;
}

/* --------------------------------------
   12. Our Team
-----------------------------------------*/

.team {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
	position: relative;
}

.team .icon-bg {
    position: absolute;
    top: 5px;
    right: 0;
    width: 170px;
    opacity: .9;
}

.team .flaticon-leaves:before {
    position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.team .member {
	position: relative;
    border-radius: 0 25px 25px;
	overflow: hidden;
}

.team .member .member-img {
	position: relative;
    overflow: hidden;
	padding-bottom: 100px;
}

.team .member .member-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.team .member .member-info {
    background: #03a956;
	padding: 25px 0;
	text-align: center;
	overflow: hidden;
	position: absolute;
    bottom: -20px;
    width: 100%;
	-webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.team .member:hover .member-info {
    bottom: 0px;
}

.team .member .member-info .member-name {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .2px;
    margin-bottom: 6px;
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
}

.team .member .member-info span {
	display: block;
	color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 23px;
}

.team .member .member-info .social-media {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
	width: 100%;
    transform: translateX(-50%);
	-webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.team .member:hover .member-info .social-media {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.team .member .member-info .social-media a {
	display: inline-block;
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    display: inline-block;
    margin-right: 2px;
}

/* --------------------------------------
   13. FAQ
-----------------------------------------*/

.faq {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
	position: relative;
}

.faq .icon-bg {
    position: absolute;
    top: 5px;
    right: 0;
    width: 170px;
    opacity: .9;
}

.faq .flaticon-leaves:before {
    position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.faq h3 {
    font-size: 17px;
    letter-spacing: .4px;
    color:#03a956;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.faq h4 {
    font-size: 25px;
    color: #323232;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.faq .faq-image {
	position: relative;
}

.faq .faq-image img {
	border-radius: 0 25px 25px;
	padding-left: 30px;
	margin-bottom: 30px;
}


.faq .faq-image .img2 {
	position: absolute;
    bottom: -40px;
    left: -10px;
    width: 245px;
    height: 245px;
    padding: 0;
}

.faq .card {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .07);
    border-radius: 0 25px 25px;
    overflow: hidden;
}

.faq .card:last-of-type {
    margin-bottom: 0;
}

.faq .card .card-header {
    padding: 0;
	background-color: transparent;
	border-bottom: none;
}

.faq .card .card-header h5 .btn-link {
    position: relative;
    padding: 20px 40px 20px 20px;
    display: block;
    text-decoration: none;
    background: #03a956;
    color: #fff;
    font-size: 17px;
	line-height: 1.1;
	border: none;
    border-radius: 0;
	width: 100%;
	text-align: left;
	white-space: initial;
}

.faq .card .card-header .btn-link:after {
    content: '\f067';
    font-family: "FontAwesome";
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 12px;
    color: #fff;
}

.faq .card .card-header .btn-link[aria-expanded="true"]:after {
    content: "\f068";
}

.faq .card .card-body {
	font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #777676;
    padding: 20px;
}

/* --------------------------------------
   14. Testimonials
-----------------------------------------*/

.testimonials {
	padding-top: 100px;
    padding-bottom: 100px;
	position: relative;
    overflow: hidden;
	background-color: #333;
}

.testimonials:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 447px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.02;
}

.testimonials:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 447px;
    height: 100%;
	transform: scaleX(-1);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.02;
}

.testimonials .main-title h3 {
	color: #fff;
}

.testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 35px;
}

.testimonials .owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot:hover span {
    width: 18px;
    height: 18px;
    margin: 0 6px;
    background: url('../images/chakra.png') center center no-repeat;
	background-size: cover;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: url('../images/chakra-active.png') center center no-repeat;
}

.testimonials .testimonial-box {
    padding: 20px 20px 0 0;	
    overflow: hidden;
}

.testimonials .testimonial-box .client-info {
    background: transparent;
	overflow: hidden;
	display: flex;
}

.testimonials .testimonial-box .client-info .quote {
    width: 60px !important;
    height: 60px;
    position: absolute;
    top: 0px;
    left: 77px;
    opacity: .06;
}

.testimonials .testimonial-box .client-pic {
	float: left;
	width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.testimonials .testimonial-box .client-pic img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
    border: 10px solid #333333;
    border-left: 10px solid #03a956;
    border-top: 10px solid #03a956;
}

.testimonials .client-details {
    float: left;
    width: calc(100% - 115px);
    margin-left: 15px;
}

.testimonials .testimonial-box .client-details .description {
	color: #f3f1f1;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 8px;
}

.testimonials .client-details h6 {
	color: #fff;
    font-size: 17px;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-weight: 600;
	margin-bottom: 4px;
	position: relative;
	z-index: 1;
}

.testimonials .testimonial-box .client-details .star i {
	font-size: 11px;
	color:#03a956;
}

/* --------------------------------------
   15. Blog
-----------------------------------------*/

.blog {
    padding-top: 100px;
    padding-bottom: 100px;
	background: #fff;
	position: relative;
}

.blog .flaticon-leaves:before {
    position: absolute;
    bottom: -36px;
    left: 2px;
    margin: 0;
    opacity: .25;
    font-size: 144px;
    color: #e6e8e8;
}

.blog .post {
	background-color: #f7f6f6;
	position: relative;
	margin-bottom: 96px;
}

.blog .post-img {
	border-radius: 0 25px 25px;
	overflow: hidden;
}

.blog .post-img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.blog .post .post-content {
    padding: 20px;
    position: absolute;
    bottom: -95px;
    left: 35px;
    right: 35px;
    text-align: center;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .07);
	border-radius: 0 10px 10px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog .post:hover .post-content {
    bottom: -85px;
}

.blog .post .post-content .post-title h4 {
    color: #3e3e3e;
    margin-bottom: 7px;
    font-weight: 700;
	line-height: 1.4;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog .post .post-content .post-title h4:hover {
    color:#03a956;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 0;
    color: #777676;
    font-size: 15px;
}

.blog .post .post-content .post-info {
    margin-bottom: 0;
    margin-top: 7px;
}

.blog .post .post-content .post-info li {
    display: inline-block;
    color: #888;
	letter-spacing: .3px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
}

.blog .post .post-content .post-info .post-more {
    position: relative;
}

.blog .post .post-content .post-info .post-more .line-left {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background:#03a956;
    width: 0;
    display: inline-block;
    height: 1px;
    vertical-align: middle;
    opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog .post .post-content .post-info .post-more:hover .line-left {
	width: 40px;
    opacity: 1;
}

.blog .post .post-content .post-info .post-more .text-more {
	display: inline-block;
	color:#03a956;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0;
    -webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog .post .post-content .post-info .post-more:hover .text-more {
    -moz-transform: translate(55px, 0px);
    -webkit-transform: translate(55px, 0px);
    -o-transform: translate(55px, 0px);
    -ms-transform: translate(55px, 0px);
    transform: translate(55px, 0px);
}

.blog .post .post-content .post-info li .post-more i {
	color:#03a956;
    margin-left: -4px;
    position: relative;
    top: 1px;
}

.blog .post .post-content .post-info .post-more .line-right {
    background:#03a956;
    width: 54px;
    display: inline-block;
    height: 1px;
    vertical-align: middle;
    opacity: 1;
    margin-left: 15px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog .post .post-content .post-info .post-more:hover .line-right {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}

.blog .post .post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 65px;
    height: 65px;
    background:#03a956;
    color: #fff;
    border-radius: 0 10px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
}

.blog .post .post-date span {
    display: block;
    line-height: 1;
    margin-top: 14px;
}

/* --------------------------------------
   16. Call To Action
-----------------------------------------*/

.call-to-action {
    /*background: url('../images/bg.jpg') center center no-repeat;*/
	background: #03a956;
    color: #fff;
    padding: 65px 0;
    position: relative;
}

.call-to-action:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 447px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.019;
}

.call-to-action:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 447px;
    height: 100%;
	transform: scaleX(-1);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.019;
}

.call-to-action .content {
    position: relative;
	z-index: 2;
}

.call-to-action h3 {
    font-size: 35px;
    margin-bottom: 20px;
	text-transform: capitalize;
}

.call-to-action p {
	color: #f1f3f1;
    font-size: 15px;
    font-weight: 400;
	margin-bottom: 0;
}

.call-to-action .main-btn {
    margin-top: 25px;
}

/* --------------------------------------
   17. Contact
-----------------------------------------*/

.contact {
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
	background-color: #fff;
}

.contact .main-title {
	text-align: left !important;
	margin-bottom: 35px;
}

.contact .contact-content {
    background: #f7f6f6;
    padding: 50px;
    padding-bottom: 0;
    margin-bottom: -182px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 3;
	overflow: hidden;
}

.contact .contact-content:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 447px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    opacity: .015;
}

.contact .contact-content:after {
    content: "";
    position: absolute;
    right: -218px;
    z-index: -1;
    top: 0;
    width: 530px;
    height: 800px;
    background: #03a956;
    transform: rotate(22deg);
}

.contact .contact-form {
	position: relative;
}

.contact .contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact .contact-form .form-group .form-control {
    background-color: #fff;
    color: #777676;
    border: 0;
	border-left: 2px solid#03a956;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 46px;
    padding: 12px;
}

.contact .contact-form .form-group .form-control::placeholder {
    color: #888;
}

.contact .contact-form .form-group textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

.contact .contact-form .form-group label {
    position: absolute;
    top: 13px;
    left: 12px;
    width: 100%;
    margin-bottom: 0;
    font-weight: 400;
    cursor: text;
    color: #888;
	font-size: 15px;
}

.contact .contact-form .form-group .form-control:focus ~ label,
.contact .contact-form .form-group input:not([value=""]) ~ label,
.contact .contact-form .form-group textarea:not([data-value=""]) ~ label {
    top: -16px;
    left: 0;
    font-size: 14px;
    letter-spacing: .5px;
	font-weight: 500;
}

.contact .contact-form .form-group .form-control:focus ~ label {
    color:#03a956;
}

.contact .contact-form .form-group .input-border {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color:#03a956;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.contact .contact-form .form-group .form-control:focus ~ .input-border {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact .contact-form .contact-btn {
    margin: 0;
	margin-bottom: 50px;
}

.contact .contact-form .form-message {
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    padding: 12px;
    text-transform: uppercase;
}

.contact .contact-form .form-message.success {
	background-color: #37983b;
}

.contact .contact-form .form-message.error {
	background-color: #f54033;
}

.contact .contact-img {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* --------------------------------------
   18. Footer
-----------------------------------------*/

.footer {
	background-color: #333;
	position: relative;
}

.footer:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 447px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.02;
}

.footer:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 447px;
    height: 100%;
	transform: scaleX(-1);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/leaf.png);
    content: "";
    opacity: 0.02;
}

.footer .footer-top { 
	position: relative;
	padding-top: 80px;
    padding-bottom: 80px;
	border-bottom: 1px solid #3b3b3e;
}

.footer.footer1 .footer-top { 
	padding-top: 180px;
}

.footer .footer-top .footer-menu {
    position: relative;
	z-index: 1;
}

.footer .footer-top .footer-logo { 
	margin-bottom: 10px;
}

.footer .footer-top .footer-logo .my-logo {
	line-height: 1;
    top: -6px;
    position: relative;
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    display: inline-block;
    font-family: 'Mr De Haviland', cursive;
}

.footer .footer-top .footer-logo .my-logo .flaticon-orchid:before {
    margin-left: 0;
    font-size: 36px;
    color:#03a956;
    margin-right: 12px;
    position: relative;
    top: 2px;
}

.footer .footer-top ul li {
	font-size: 15px;
    margin-bottom: 15px;
	color: #e0dede;
}

.footer .footer-top .social-media {
	margin-right: 0;
}

.footer .footer-top .social-media li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 0;
}

.footer .footer-top .social-media li i {
	display: inline-block;
    width: 33px;
    height: 33px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: transparent;
    color:#03a956;
    border: 1px solid#03a956;
    border-radius: 0 10px 10px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.footer .footer-top .social-media li i:hover {
	background:#03a956;
    border: 1px solid#03a956;
	color: #fff;
}

.footer .footer-top .footer-item h4 {
	color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .7px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer .footer-top .footer-item ul li {
	color: #e0dede;
	padding-left: 10px;
}

.footer .footer-top .footer-item ul li a {
	color: #e0dede;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.footer .footer-top .footer-item ul li a:hover {
	color:#03a956;
}

.footer .footer-top .footer-item ul li:before {
	content: '\f058';
    font-family: 'FontAwesome';
    position: relative;
	top: 1px;
    left: -11px;
    color:#03a956;
    font-size: 17px;
}

.footer .footer-top .footer-item p {
	color: #e0dede;
    font-size: 15px;
    font-weight: 400;
	margin-bottom: 15px;
}

.footer .footer-top .footer-item .newsletter-form {
    position: relative;
}

.footer .footer-top .footer-item .newsletter-form .form-control {
    color: #fff;
	font-size: 14px;
    outline: none;
    border: none;
    border-radius: 0 25px 25px;
    height: 50px;
    padding: 12px 25px;
    background: #03a956;
}

.footer .footer-top .footer-item .newsletter-form .form-control:focus {
    outline: none;
    border: none;
	box-shadow: none;
}

.footer .footer-top .footer-item .newsletter-form .form-control::placeholder {
    color: #fff;
}

.footer .footer-top .footer-item .newsletter-form .submit {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    outline: none;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
	cursor: pointer;
}

.footer .footer-bottom { 
	padding-top: 20px;
    padding-bottom: 20px;
}

.footer .footer-bottom .copyright p { 
	color: #e0dede;
	font-size: 16px;
	letter-spacing: .3px;
	margin: 0;
}

.footer .footer-bottom .copyright p span { 
	font-family: 'Quicksand', sans-serif;
	color:#03a956;
	font-weight: 600;
	letter-spacing: .5px;
}

/* --------------------------------------
   19. Scroll To Top
-----------------------------------------*/

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    line-height: 46px;
    font-size: 17px;
    text-align: center;
    color: #fff;
    background:#03a956;
    border: 2px solid#03a956;
    border-radius: 0 10px 10px;
    z-index: 999;
	opacity: 0;
	-webkit-transition: all .7s linear;
    -moz-transition: all .7s linear; 
    -o-transition: all .7s linear;
    -ms-transition: all .7s linear;
    transition: all .7s linear;
	overflow: hidden;
}

.scroll-top.active {
    opacity: 1;
}

.scroll-top:hover {
    -webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	border: 2px solid #03a956;
}

.scroll-top span {
    position: relative;
    z-index: 2;
}

.scroll-top:before {
    content: '';
    background-color: #03a956;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
    transition-duration: .6s;
    z-index: 1;
}

.scroll-top:hover:before {
    width: 190%;
}

/* --------------------------------------
   20. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
    /*=========== Navbar ============*/
	
    .header-inner .navbar .nav > li {
		margin-right: 10px;
	}
	
	/*=========== Feautures ============*/
	.features .features-image .small-image {
	    bottom: -15px;
        left: 24px;
        width: 110px;
        height: 110px;
     }
	
	/*=========== Blog ============*/
	.blog .post .post-content {
        left: 30px;
        right: 30px;
	}
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    
    /*=========== Upper bar ============*/
	.upper-bar .social-media-bar {
        margin-top: 5px;
    }
	
    /*=========== Navbar ============*/
	.header-inner .my-logo {
        font-size: 54px;
    }
	
	.header-inner .my-logo .flaticon-orchid:before {
        font-size: 43px;
        margin-right: 13px;
    }
	
	.header-inner .nav-search {
		line-height: 68px;
	}
	
	.header-inner .search-form {
		top: 69px;
	}
	
	.header-inner .navbar {
		float: left;
	}
	
	.header-inner .navbar-nav {
		flex-direction: row;
	}
	
	.header-inner .navbar .nav > li {
		margin-right: 18px;
	}
	
	.header-inner .navbar .nav li a {
		padding: 25px 0;
	}
	
    /*=========== About Us ============*/
	.about-us .about-image {
		margin: auto;
        width: 80%;
        margin-bottom: 45px;
    }
	
    /*=========== Features ============*/
	.features .info {
	    order: 1;
    }
	
	.features .image {
	    order: 0;
    }
	
	.features .features-image {
        width: 80%;
        margin: auto;
        margin-bottom: 50px;
    }
	
	/*=========== Services ============*/
	.services {
	    padding-bottom: 70px;
    }
	
	.services .image-md {
	    display: none;
    }
	
    /*=========== Our Team ============*/
	.team {
        padding-bottom: 70px;
    }
	
	.team .member {
        margin-bottom: 30px;
    }
	
    /*=========== FAQ ============*/
	.faq .faq-image {
		width: 80%;
		margin: auto;
		margin-bottom: 65px;
    }
	
	/*=========== Blog ==========*/
	.blog {
        padding-bottom: 70px;
    }
	
	.blog .post {
        margin-bottom: 130px;
    }
	
	/*=========== Contact ==========*/
	.contact .contact-content:after {
        right: -298px;
    }
	
	/*=========== Footer ==========*/
	.footer .footer-top {
        padding-bottom: 40px;
    }
	
	.footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }
	
	.footer .footer-top .social-media li i {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 16px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {
	
	.main-title {
        margin-bottom: 55px;
    }
	
	/*=========== Upper bar ============*/
	.upper-bar .social-media-bar {
		display: none;
	}
    
    /*=========== Navbar ============*/
	.header-inner .menu-toggle {
		display: block;
	}
	
	.header-inner .nav-search {
		display: none;
	}
	
	.header-inner .navbar {
		float: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 99999;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-ms-transform: scaleY(0);
		-o-transform: scaleY(0);
		transform: scaleY(0);
		transform-origin: 0 0;
		-webkit-transition: all .4s ease-in-out;
	    -moz-transition: all .4s ease-in-out;
	    -ms-transition: all .4s ease-in-out;
	    -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
	}
	
	.header-inner.menu-active .navbar {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		max-height: 543px;
		overflow-y: auto;
		overflow-x: hidden;
	}
	
	.header-inner .navbar .nav > li {
		margin-right: 0;
	}
	
	.header-inner .navbar .nav li a {
		padding: 12px 8px;
		border-bottom: 1px solid #eee;
	}
	
	.header-inner .navbar .nav li a:before {
		content: none;
	}
	
	.header-inner .navbar .nav li a i {
		position: absolute;
		right: 11px;
		top: 0;
		line-height: 44px;
	}
	
	.header-inner .navbar .nav .dropdown {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		display: none;
		transition: none;
	}
	
	.header-inner .navbar .nav li .dropdown li a {
		padding-left: 25px;
	}
	
	.header-inner .navbar .nav li .dropdown li a:hover {
		padding-left: 28px;
	}
	
	/*=========== Home ============*/
	.home .home-content h5 {
        font-size: 21px;
    }
	
	.home .home-content h1 {
        font-size: 58px;
    }
	
	/*=========== About Us ============*/
	.about-us {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	.about-us .about-image {
        margin-bottom: 45px;
    }
	
    /*=========== Features ============*/
	.features {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	.features .info {
	    order: 1;
    }
	
	.features .image {
	    order: 0;
    }
	
	.features .features-image {
        margin-bottom: 50px;
    }
	
	/*=========== Services ============*/
	.services {
		padding-top: 80px;
	    padding-bottom: 50px;
    }
	
	.services .image-md {
	    display: none;
    }
	
	/*=========== Products ============*/
	.products {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	/*=========== Facts ============*/
	.facts {
        padding-top: 80px;
        padding-bottom: 50px;
    }
	
	.facts .facts-info {
        margin-bottom: 45px;
    }
	
	/*=========== Our Team ============*/
	.team {
        padding-top: 80px;
        padding-bottom: 50px;
    }
	
	.team .member {
        margin-left: 80px;
        margin-right: 80px;
		margin-bottom: 30px;
    }
	
	/*=========== FAQ ============*/
	.faq .faq-image {
		margin-bottom: 65px;
    }
	
	.faq {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	/*=========== Testimonials ============*/
	.testimonials {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	/*=========== Blog ============*/
	.blog {
        padding-top: 80px;
        padding-bottom: 50px;
    }
	
	.blog .post {
		margin-left: 40px;
		margin-right: 40px;
        margin-bottom: 130px;
    }

	/*=========== Contact ============*/
	.contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	.contact .contact-img {
        display: none;
    }
	
	.contact .contact-content:after {
        content: none;
    }
	
	/*=========== Footer ============*/
	.footer .footer-top {
		padding-top: 70px;
        padding-bottom: 40px;
    }
	
	.footer.footer1 .footer-top {
		padding-top: 180px;
    }
	
	.footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    
	/*=========== Upper bar ============*/
   .upper-bar .container {
		padding: 0;
	}
	
	.upper-bar .inner-bar {
		border-radius: 0;
	}
	
	/*=========== Navbar ============*/
   .header-inner .container {
		padding: 0;
	}
	
	.header-inner .my-logo {
		padding-left: 15px;
	}
	
	.header-inner .menu-toggle {
		margin-right: 15px;
	}
	
	/*=========== Home ============*/
	.home .home-content h5 {
        font-size: 18px;
    }
	
	.home .home-content h1 {
        font-size: 45px;
    }
	
	.home .home-content p {
        font-size: 15px;
    }
	
	.home .home-content .custom-btn {
		margin-top: 12px;
    }
	
	/*=========== About Us ============*/
	.about-us .about-image {
        margin-left: 40px;
        margin-right: 40px;
    }
	
	.about-us .about-info h3 {
        font-size: 16px;
    }
	
	.about-us .about-info h4 {
        font-size: 21px;
    }
	
	/*=========== Features ============*/
	.features .icon-bg {
        display: none;
    }
	
	.features .features-image {
        margin-left: 40px;
        margin-right: 40px;
    }
	
	.features .features-image .small-image {
	    bottom: -15px;
        left: 24px;
        width: 110px;
        height: 110px;
     }
	
	/*=========== Services ============*/
	.services .icon-bg {
        display: none;
    }
	
	/*=========== Our Team ============*/
	.team .icon-bg {
		display: none;
    }
	
	.team .member {
        margin-left: 40px;
        margin-right: 40px;
    }
	
	.team .member .member-img img {
        width: 100%;
    }
	
	/*=========== FAQ ============*/
	.faq .icon-bg {
        display: none;
    }
	
	.faq .faq-image .img2 {
        width: 200px;
        height: 200px;
    }
	
	/*=========== Testimonials ============*/
	.testimonials .client-details h6 {
        font-size: 17px;
    }
	
	.testimonials .testimonial-box .description p {
        font-size: 14px;
    }
	
	/*=========== Blog ============*/
	.blog .post .post-content .post-title h4 {
		font-size: 17px;
    }
	
	/*=========== Call To Action ============*/
	.call-to-action h3 {
        font-size: 30px;
    }
	
	/*=========== Footer ============*/	
	.footer .footer-bottom .copyright p {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
	
	/*=========== About ============*/	
	.about-us .about-image {
        margin-left: 0;
        margin-right: 0;
    }
	
	/*=========== Features ============*/	
	.features .features-image {
        margin-left: 0;
        margin-right: 0;
    }
	
	/*=========== Our Team ============*/
	.team .member {
        margin-left: 0;
        margin-right: 0;
    }
	
	/*=========== FAQ ============*/
	.faq .faq-image {
        margin-bottom: 45px;
    }
	
	.faq .faq-image img {
		padding-left: 0;
        margin-bottom: 0;
    }
	
	.faq .faq-image .img2 {
        display: none;
    }
	
	/*=========== Blog ============*/
	.blog .post {
        margin-left: 0;
        margin-right: 0;
    }
	
	/*=========== Contact ============*/
	.contact .contact-content {
        padding: 35px;
    }
	
}