a {
    transition: 0.4s ease;
    transition-property: color, background-color, border-color;
    text-decoration: none;
}

.loading_cover0{
	display: none;
}
.loading_cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background-color: #fff;
    opacity: 0.8;
}
.loading_cover1 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1100;
}
.loading_cover1 div {
    width: 80px;
    height: 80px;
    margin: 0px auto;
    display: block;
    margin-top: 300px;
    position: relative;
}

.loading_cover1 img {
    width: 100%;
    display: block;
    position: absolute;
}
#loader {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 0.7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgb(206, 236, 171);
}

.header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80px;
    width: 100%;
}

.header__btn {
    padding: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    transition: 0.4s ease;
    transition-property: color, background-color, border-color;
}

.header__btn {
    position: absolute;
    width: 24px;
    height: 22px;
    display: none;
    left: 0;
}
.header__btn span {
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  background-color:  rgb(63, 107, 17);
  border-radius: 3px;
  transition: 0.5s;
  opacity: 1;
}
.header__btn span:first-child {
  top: 0;
}
.header__btn span:nth-child(2) {
  top: 10px;
  width: 16px;
}
.header__btn span:last-child {
  top: 20px;
  width: 8px;
}
.header__btn--active span:first-child {
  transform: rotate(45deg);
  top: 10px;
}
.header__btn--active span:nth-child(2) {
  opacity: 0;
}
.header__btn--active span:last-child {
  width: 24px;
  transform: rotate(-45deg);
  top: 10px;
}

.header__logo {
  z-index: 1;
  width: auto;
  height: 60px;
  display: inline-block;
  position: relative;
}

@media (max-width: 996px){
	.header__btn{
		display: block;
	}
	.header__logo{
		margin: 0 0 0 40px;
	}
}

.header__logo img {
  height: 60px;
  width: auto;
}

.header__tagline {
    display: none;
}
@media (min-width: 576px){
	.header__tagline {
	    display: block;
	    line-height: 22px;
	    color: rgb(63, 107, 17);
	    font-size: 18px;
	    transition: color 0.4s ease;
	    margin-right: auto;
	    margin-left: 15px;
	    font-family: 'Jura', sans-serif;
	    font-weight: 700;
	}
}
.header__nav {
	position: fixed;
	width: 260px;
	top: 80px;
	bottom: 0;
	left: 0;
	background-color: #274f03;
	padding: 35px 15px 0;
	transition: transform 0.4s ease;
	margin: 0;
	transform: translate3d(-260px, 0, 0);
}
.header__nav--active {
	transform: translate3d(0, 0, 0);
}
.header__nav li {
  	display: block;
  	margin-bottom: 25px;
}
.header__nav li:last-child {
	margin-bottom: 0;
}
.header__nav li.active a {
	color: #d9e6d1;
}
.header__nav a {
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
}
.header__nav a:hover {
	color: #d9e6d1;
}
@media (min-width: 996px){

	.header__nav {
	    position: relative;
	    display: flex;
	    flex-direction: row;
	    justify-content: flex-start;
	    align-items: center;
	    background-color: transparent;
	    top: auto;
	    bottom: auto;
	    left: auto;
	    right: auto;
	    width: auto;
	    transform: translate3d(0, 0, 0);
	    padding: 0;
	    margin: 0;
	    list-style: none;
	    margin-right: auto;
	  }
	  .header__nav li {
	    display: block;
	    margin-right: 44px;
	    margin-bottom: 0;
	  }
	  .header__nav li:last-child {
	    margin-right: 0;
	  }
	  .header__nav a {
	  	text-decoration: none;
	    display: flex;
	    flex-direction: row;
	    justify-content: center;
	    align-items: center;
	    height: 40px;
	    color: rgb(63, 107, 17);
	    font-size: 16px;
	    font-weight: 400;
	    text-transform: none;
	  }
	  .header__nav a:hover {
	    color: #8fbd59;
	  }
}

.header__signin {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 44px;
	border-radius: 22px;
	background: linear-gradient(90deg, #5ca803 0%, #026735 100%);
	color: #fff;
	border: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	padding: 0 25px;
	overflow: hidden;
	margin-right: 15px;
}
.header__signin:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, #026735 0%, #5ca803 100%);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
	transition: 0.4s ease;
}
.header__signin.logout{
	background: linear-gradient(90deg, #a0b0a9 0%, #d94416 100%);
}
.header__signin.logout:before{
	background: linear-gradient(90deg, #d94416 0%, #a0b0a9 100%);
}
.header__signin span {
	position: relative;
	z-index: 2;
}
.header__signin:hover {
  	color: #fff;
}
.header__signin:hover:before {
	opacity: 1;
}
.auth-section{
	display: flex;
	align-items: center;
}
.header__cart{
	display: flex;
}
.header__cart ul{
	padding: 0;
	margin: 0 20px 0 0;
}
.header__cart ul li{
	display: block;
	position: relative;
}
.header__cart ul li a{
	color: #006635;
}
.header__cart ul li a span {
  height: 13px;
  width: 13px;
  background: #7fad39;
  font-size: 10px;
  color: #ffffff;
  line-height: 13px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -12px;
}
.header__cart__price{
	display: none;
}
.shopify-section{
	margin-top: 80px;
	width: 100%;
	
}
.slide-container{
	position: relative;
}
.slide-container .owl-nav{
	position: absolute;
	width: 100%;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
}
.slide-container .owl-nav .owl-prev span, .slide-container .owl-nav .owl-next span{
	color: #5e5454;
	position: absolute;
	z-index: 10;
}
.slide-container .owl-nav .owl-prev span{
	left: 10px;
	top: 50%;
	transform: translate(10px, 50%);
}
.slide-container .owl-nav .owl-next span{
	right: 10px;
	top: 50%;
	transform: translate(-10px, 50%);
}
.slide-container .owl-nav .owl-prev span svg, .slide-container .owl-nav .owl-next span svg {
    width: 80px;
    height: 80px;
    fill: #fff;
    opacity: .75;
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -moz-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -o-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -ms-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5))
}
.slides{
	width: 100%;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}


.slider-1{
	display: flex;
	background: url(../../images/slide/1.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-2{
	display: flex;
	background: url(../../images/slide/2.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-3{
	display: flex;
	background: url(../../images/slide/3.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-4{
	display: flex;
	background: url(../../images/slide/4.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-5{
	display: flex;
	background: url(../../images/slide/5.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-6{
	display: flex;
	background: url(../../images/slide/6.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-7{
	display: flex;
	background: url(../../images/slide/7.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slider-8{
	display: flex;
	background: url(../../images/slide/8.jpg) no-repeat;
	background-size: cover;
	object-fit: cover;
}
.slides-inner{
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	color: #fff !important;
	/*background: rgba(168, 179, 159, 0.40);*/
}
.slides-header{
	font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.4em;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.25);
    margin: 0 0 .7em;
}
.line-3 .show-now-btn{
	display: flex;
	background: rgb(214, 64, 18);
	/*background: linear-gradient(90deg, #5ca803 0%, #026735 100%);*/
	padding: 8px 15px 10px;
	color: #fff;
}
.slider-2 .line-3 .show-now-btn{
	background: linear-gradient(90deg, rgb(213, 63, 18) 0%, #dadfd8 100%);
}
@media (max-width: 996px){
	.slides{
		width: 100%;
		height: 45.18072289156627vmin;
	}
	.slide-container .owl-nav .owl-prev span svg, .slide-container .owl-nav .owl-next span svg {
	    width: 8.032128514056225vmin;
	    height: 8.032128514056225vmin;
	}
	.slide-container .owl-nav .owl-prev span{
		left: 1.004016064257028vmin;
	}
	.slide-container .owl-nav .owl-next span{
		right: 1.004016064257028vmin;
	}
	
}
@media (max-width: 460px){
	.slides{
		width: 100%;
		height: 54.35vmin;
		background-position: center;
	}
	.slides-inner{
		padding: 4.347826086956522vmin 0;
		padding: 4.347826086956522vmin;
	}
	.slides-header, .line-2{
	    font-size: 3.91304347826087vmin;
	}
	.line-1{
		font-size: 7.4vmin;
	}
	.line-3 .show-now-btn{
		padding: 1.74vmin 3.3vmin 2.2vmin;
		font-size: 3.5vmin;
	}
}

.shopify-footer{
	margin-top: 1px;
	width: 100%;
	background: #006635;
}
.shopify-footer-flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
}
.shopify-bar-col{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
.leaf-logo{
	margin-right: 10px;
}
.leaf-logo svg{
	width: 28px;
	height: 28px;
    fill: rgb(231, 253, 208);
}
.shopify-text{
	display: flex;
	flex-direction: column;
}
.shopify-text span{
	display: flex;
	line-height: 1.2;
	color: #fff;
}

@media (max-width: 767px){
	.shopify-bar-col:last-child{
		display: none;
	}
}
@media (max-width: 460px){
	.leaf-logo svg{
		width: 6.1vmin;
		height: 6.1vmin;
	}
	.shopify-text span{
		font-size: 3.5vmin;
	}
}
.elixir-products{
	padding: 40px 0 20px;
}
.elixir-products.all-products{
	margin-top: 80px;
}
.product__title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.title-left .categories__title{
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	color: rgb(63, 107, 17);
}
.title-left span{
	text-transform: uppercase;
	color: rgb(1, 70, 37);
	font-size: 14px;
}
.title-right a{
	color: rgb(82, 161, 9);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (max-width: 376px){
	.elixir-products{
		padding-top: 20px;
	}
	.title-left .categories__title{
		font-size: 16px;
	}
	.title-left span{
		font-size: 10px;
	}
}

.products__categories{
	margin: 1rem 0 0;
	width: 100%;
	position: relative;
}

.products__categories .owl-nav{
	position: absolute;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
}
.products__categories .owl-nav .owl-prev span, .products__categories .owl-nav .owl-next span{
	position: absolute;
	top: -7px;
	z-index: 20;
}
.products__categories .owl-nav .owl-prev span{
	left: -40px;
}
.products__categories .owl-nav .owl-next span{
	right: -40px;
}
@media (max-width: 576px){
	.products__categories .owl-nav .owl-prev span{
		left: 10px;
	}
	.products__categories .owl-nav .owl-next span{
		right: 10px;
	}
}


.products__categories .owl-nav .owl-prev span svg, .products__categories .owl-nav .owl-next span svg {
    width: 38px;
    height: 38px;
    fill: #000;
    opacity: .75;
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -moz-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -o-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    -ms-filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5));
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,.5))
}
.categories{
	width: 100%;
	border-top: 1px solid rgba(63, 107, 17, 0.21);
	border-bottom: 1px solid rgba(63, 107, 17, 0.21);
	position: relative;
}

.all-products .products__categories{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.all-products .categories{
	width: 33.33333333333333%;
	margin-bottom: 2rem;
}

@media (max-width: 767px){
	.all-products .categories{
		width: 50%;
	}
}

.products__categories .categories:first-child{
	border: 1px solid rgba(63, 107, 17, 0.21);
}
.categories:not(:first-child){
	border-right: 1px solid rgba(63, 107, 17, 0.21);
}

.all-products .categories{
	border: 1px solid rgba(63, 107, 17, 0.21);
}

.categories .sale-promo{
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
	background: rgb(240, 127, 93);
	padding: 4px 12px;
	color: #fff;
	font-size: 12px;
}
.categories__img{
	height: 270px;
	position: relative;
}
@media (max-width: 376px){
	.categories__img{
		height: 200px;
	}
}
.set-bg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	object-fit: contain;
}

.categories__details{
	padding: 0 15px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.categories__name{
	white-space: nowrap;
	overflow: auto;
	padding: 0 0 10px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.45);
}
.categories__amount{
	white-space: nowrap;
	overflow: auto;
	padding: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.45);
}

.price-slashed{
	text-decoration: line-through;
	color: red;
}

.categories__add_cart{
	width: 150px;
}
.categories__add_cart .btn{
	border-radius: unset;
	background: linear-gradient(90deg, #026735 0%, #5ca803 100%);
	color: #fff;
	border: none;

}
.categories__add_cart .btn:focus, .categories__add_cart .btn:hover{
	background: linear-gradient(90deg, #5ca803 0%, #026735 100%);
  	color: #fff;
}
@media (max-width: 444px){
	.categories__add_cart{
		width: 100%;
		margin: auto;
	}
	.categories__add_cart .btn{
		font-size: 12px;
	}
}

.consultants{
	padding: 10px 0;
}
.c--elix-sm-title{
	width: 100%;
	margin-bottom: 20px;
}
.c--elix-sm-title h4{
	font-size: 18px;
	font-weight: 700;
	color: rgb(78, 158, 11);
	text-transform: uppercase;
}
.c--elix-sm-title .sm-title-bottom{
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	color: rgb(8, 108, 50);
}
.c--elix-sm-title .sm-title-bottom span{
	width: 30%;
	height: 6px;
	margin-right: 10px;
	background: linear-gradient(90deg, #d6e3c9 0%, #4a9b0d 100%);
}
.c--elix-sm-title .sm-title-bottom span:last-child{
  	background: linear-gradient(90deg, #e8e4e4 0%, #f07f5d 100%);
}
@media (min-width: 992px){
	.c--elix-sm-title{
		padding: 10px 0;
	}
	.c--elix-sm-title h4{
		font-size: 24px;
	}
	.c--elix-sm-title .sm-title-bottom{
		font-size: 16px;

	}
	.c--elix-sm-title .sm-title-bottom span{
		width: 10%;
	}
}	
.cs--flex{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: rgb(244, 251, 235);
	background: linear-gradient(90deg, #ceeeb0 0%, #f4fbeb 100%);
}
.cs-image-wrap{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px 15px;
	background: url(../../images/home/c--package.png?v1=21);
	background-size: cover;
	background-position: center;
	object-fit: cover;
	position: relative;
}


@media (max-width: 767px){
	.cs-image-wrap:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(77, 138, 19, 0.32);
	}
}
.cs-image-wrap p{
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: center;
}
.eli-mem-item .cs--list{
	padding: 0;
	margin: 0;
	list-style: none;
}
.eli-mem-item .cs--list li{
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	margin-left: 2px;
	color: rgb(2, 30, 27);

}
.eli-mem-item .cs--list li:before{
	content: "";
	position: absolute;
	left: -2px;
	top: 19px;
	width: 10px;
	height: 10px;
	border: 3px solid rgb(4, 105, 56);
	border-radius: 100%;
}
@media (max-width: 990px){
	.cs-image-wrap{
		min-height: 400px;
	}
	.cs-image-wrap p{
		font-size: 22px;
	}
}
@media (max-width: 990px){
	.cs-image-wrap{
		min-height: 300px;
	}
	.cs-image-wrap p{
		font-size: 18px;
	}
}
.cs--package{
	padding: 20px 0;
	width: 50%;
}
.cs--package-title{
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.cs--package-title h4{
	font-size: 38px;
	font-weight: 900;
}
.cs--package-title span{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 900;
}
.cs--package-title span:before{
	content: "";
	width: 25%;
	height: 10px;
	background: linear-gradient(90deg, #deeee6 0%, #9fdf54 100%);
	margin-right: 10px;
}
.cs--package-title span:after{
	content: "";
	width: 25%;
	height: 10px;
	margin-left: 10px;
	background: linear-gradient(90deg, #006634 0%, #e65252 100%);
}
@media (max-width: 438px){
	.cs--package-title{
		margin-bottom: 30px;
	}
	.cs--package-title h4{
		font-size: 28px;
		font-weight: 700;
	}
	.cs--package-title span{
		font-size: 14px;
		font-weight: 900;
	}
	.cs--package-title span:before{		
		height: 8px;
	}
	.cs--package-title span:after{
		height: 8px;
	}
}
@media (max-width: 340px){
	.cs--package-title h4{
		font-size: 24px;
	}
	.cs--package-title span{
		font-size: 12px;
	}
	.cs--package-title span:before{		
		height: 5px;
	}
	.cs--package-title span:after{
		height: 5px;
	}
}
.package--inner{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 80%;
	margin: auto;
}

@media (max-width: 990px){
	.cs-image-wrap, .cs--package{
		width: 100%;
	}
	.package--inner{
		width: 60%;
	}
}
@media (max-width: 767px){
	.package--inner{
		width: 80%;
	}
}

.pie-wrap{
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}

.pie-wrap .entry{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.top-left{
	height: 33.33333333333333%;
	width: 50%;
	position: absolute;
}
.top-right{
	height: 33.33333333333333%;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
}

.center-left{
	height: 33.33333333333333%;
	width: 50%;
	top: 33.33333333333333%;
	left: 0;
	background: #53a208;
	position: absolute;
}
.center-right{
	height: 33.33333333333333%;
	position: absolute;
	top: 33.33333333333333%;
	right: 0;
	width: 50%;
	background: #006634;
}

.bottom-left{
	height: 33.33333333333333%;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
}
.bottom-right{
	height: 33.33333333333333%;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
}

.pie-inner{
	width: 100%;
	height: 100%;
	position: absolute;
}

.gap-bottom-right{
	padding: 10px 0px 0 5px;
}

.gap-bottom-left{
	padding: 10px 5px 0 0;
}
.gap-top-left{
	padding: 0 5px 10px 0;
}
.gap-top-right{
	padding: 0 0 10px 5px;
}

.pie-bglast{
	width: 100%;
	height: 100%;
	position: relative;
	background: #53a208;
}

.gap-top-left .pie-bglast{
	background: #006634;
}
.gap-bottom-left .pie-bglast{
	background: #006634;
}

.center-entry{
	background: #fff;
	height: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	border-radius: 50%;
	z-index: 1;
}

.c--wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	height: 90%;
	border-radius: 50%;
	border: 1px solid rgba(0, 102, 52, 0.26);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.center-entry .pie-text p{
	color: #000;
}
.pie-text p{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 11px;
	color: #fff;
	font-weight: 700;
}
.pie-inner.gap-top-left .pie-text{
	position: absolute;
	top: 15%;
	left: 50%;
}

.pie-inner.gap-top-right .pie-text{
	position: absolute;
	top: 15%;
	right: 50%;
}

.center-left .pie-text{
	position: absolute;
	top: 15%;
	left: 5%;
}
.center-right .pie-text{
	position: absolute;
	top: 15%;
	right: 5%;
}
.pie-inner.gap-bottom-left .pie-text{
	position: absolute;
	bottom: 8%;
	left: 50%;
}
.pie-inner.gap-bottom-right .pie-text{
	position: absolute;
	bottom: 8%;
	right: 50%;
}
@media (max-width: 400px){
	.pie-inner.gap-bottom-left .pie-text{
		position: absolute;
		bottom: 8%;
		left: 45%;
	}
	.pie-inner.gap-bottom-right .pie-text{
		position: absolute;
		bottom: 8%;
		right: 45%;
	}
}


@media (max-width: 519px){
	.package--inner{
		width: 90%;
	}

	.center-entry .pie-text p{
		margin: 0;
		padding: 0;
		margin-bottom: 2.5vmin;
	}
}
@media (max-width: 449px){
	.pie-text p{
		font-size: 2.4vmin;
		font-weight: 700;
	}
}



.eli-section{
	padding: 30px 0;
}
.cs--eli-section{
	width: 100%;
	text-align: center;
}
.cs--eli-section h4{
	text-transform: uppercase;
	font-size: 38px;
	font-weight: 900;
}
.cs--eli-section h4 span{
	color: red;
}
.cs--eli-section .cs--bottom{
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 14px;
	font-weight: 900;
}
.cs--eli-section .cs--bottom:before{
	content: "";
	width: 55%;
	height: 10px;
	background: linear-gradient(90deg, #deeee6 0%, #9fdf54 100%);
	margin-right: 10px;
}
/*.cs--eli-section .cs--bottom:after{
	content: "";
	width: 20%;
	height: 10px;
	margin-left: 10px;
	background: linear-gradient(90deg, #006634 0%, #e65252 100%);
}*/


@media (max-width: 438px){
	.cs--eli-section h4{
		font-size: 24px;
		font-weight: 700;
	}
	.cs--eli-section .cs--bottom{
		white-space: nowrap;
	}
	.cs--eli-section .cs--bottom:before{		
		height: 8px;
		width: 50%;
	}
	/*.cs--eli-section .cs--bottom:after{
		height: 8px;
	}*/
}
@media (max-width: 340px){
	.cs--eli-section h4{
		font-size: 16px;
	}
	.cs--eli-section .cs--bottom:before{		
		height: 5px;
	}
	/*.cs--eli-section .cs--bottom:after{
		height: 5px;
	}*/
}

.ws--container{
	padding: 30px 15px;
	border: 1px solid rgba(217, 237, 217, 0.72);
	margin-top: 15px;
}
.ws--flex{
	display: flex;
}

.ws--container .owl-nav{
	position: absolute;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
}
.ws--container .owl-nav .owl-prev span, .ws--container .owl-nav .owl-next span{
	position: absolute;
	top: -7px;
	z-index: 20;
}
.ws--container .owl-nav .owl-prev span{
	left: -40px;
}
.ws--container .owl-nav .owl-next span{
	right: -40px;
}
@media (max-width: 576px){
	.ws--container .owl-nav .owl-prev span{
		left: -10px;
	}
	.ws--container .owl-nav .owl-next span{
		right: -10px;
	}
}
.ws--col{
	width: 100%;
}

.ws--image{
	width: 100%;
}
.ws--image img{
	width: 100%;
}
.ws--title{
	padding: 20px;
	width: 100%;
	background: rgb(217, 237, 217);
	max-height: 80px;
	text-align: center;
	overflow: auto;
}
@media (max-width: 576px){
	.ws--title{
		font-size: 12px;
	}
}
.w--bg-cover{
	margin: 20px 0 0;
	width: 100%;
	position: relative;
}
.w--bg-cover:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(78, 159, 9, 0.36);
	z-index: 1;
}
.contact .w--bg-cover{
	border: 1px solid  rgb(210, 210, 212);
}
.contact .w--bg-cover:before{
	background: #fff;
	width: unset;
	height: unset;
}
.w--banner{
	width: 100%;
	height: 450px;
	background: url(../../images/home/who-we-are.png?v1=12);
	background-size: cover;
	background-position: center;
}
.w--banner.contact-banner{
	background: url(../../images/home/contact.png?v1=102);
}
.w--text-content{
	padding: 20px 15px;
}
.w--text-content h6{
	padding: 10px 0 15px;
	font-size: 18px;
	font-weight: 600;
}
.w--text-content p{}

.w--readMore{
	position: relative;
	padding-bottom: 20px;
}
.w--readMore a{
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(229, 15, 87);
	position: absolute;
	z-index: 2;
}

.who-we-are{
	background: rgba(78, 159, 9, 0.36);
}
.who-we-are .cs--eli-section .cs--bottom::before{
	background: linear-gradient(90deg, #deeee6 0%, #0f702e 100%);
}
.mv--wrapper{
	
}
.mv--wrapper .mv-title{}
.mv--wrapper .mv-title h4{
	font-size: 28px;
	font-weight: 900;
}
.mv--wrapper .mv-title h4 span{
	color: #10712d;
}
.elixir-pre--pat{
	background: rgb(7, 103, 57);
}
.elix-bg-pat{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.elix-bg-pat p{
	width: 100%;
	text-align: center;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
}

@media (max-width: 767px){
	.elix-bg-pat p{
		font-size: 16px;
	}
}
@media (max-width: 376px){
	.elix-bg-pat p{
		font-size: 16px;
		font-weight: 900;
		white-space: nowrap;
	}
}
.elix-bg-pat a{
	padding: 10px 15px;
	background: linear-gradient(90deg, #ceecab 0%, #86be4b 100%);
  	color: #fff;
  	border-radius: 6px;
  	white-space: nowrap;
}
.partners-wrap{
	width: 100%;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 20px 0 20px;
}
.partners-col{
	width: 124px;
	flex-shrink: 0;
	position: relative;
}
.partner-gap{
	padding: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
/*.partners-col:first-child .partner-gap{
	padding-left: 0;
}
.partners-col:last-child .partner-gap{
	padding-right: 0;
}*/
.partner-content{
	width: 100%;
	background: rgba(0, 0, 0, 1.0);
}

.partner-gap img{
	height: 80px;
	object-fit: cover;
}
@media (max-width: 523px){
	.partners-col{
		width: 25%;
	}
	.partner-gap img{
		height: 70px;
	}
}
@media (max-width: 377px){
	.elixir-partners{
		padding: 10px 0 10px;
	}
	.partner-gap img{
		height: 50px;
	}
}

.footer-container{
	padding: 20px 0;
	width: 100%;
	background: rgb(44, 53, 58);
}
.f-wrapper{}
.f--top {
	padding-top: 0.5rem;
}
.footer-address p a i{
	margin-right: 0.45rem;
	font-size: 18px;
}
.footer-address p a{
	color: #d2d0d0 !important;
}

.f--links{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.f--links, .f--links .title, .f--links-body {
	width: 100%;
}
@media (max-width: 990px){
	.mobile-row{
		justify-content: space-between;
	}
	.media-icon{
		width: unset !important;
	}
	.media-icon:last-child{
		padding-right: 20px;
	}
}
.f--links .title h6{
	padding: 0 !important;
	margin: 0 !important;
	color: #fff;
}
.f--links-body p{
	margin: 0.45rem 0 0.45rem;
}
.f--links-body p a{
	color: #d2d0d0 !important;
}

.f--links-body p a i{
	margin-right: 0.45rem;
}
.f--links-body p a i.fa-facebook{
	color: #fff !important;
}

.f--bottom{
	border-top: 1px solid rgba(210, 208, 208, 0.27);
	margin: 10px 0 0;
	padding: 10px 0;
}
.bottom--links ul{
	margin: 0;
	padding: 0;
	display: flex;
}
.bottom--links ul li{
	display: block;
}
.bottom--links ul li:not(:last-child){
	padding-right: 15px;
}
.bottom--links ul li a{
	color: #d2d0d0;
	font-size: 10px;
}
.elixi-copyright{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	color: #d2d0d0;
}
.about-us{
	margin-top: 120px;
}
.contact .contact-follow{
	display: flex;
	align-items: center;

}
.contact .contact-follow a{
	color: rgb(7, 103, 57);
	font-size: 24px;
}
.contact .contact-follow a:not(:first-child), .contact .contact-follow a:not(:last-child){
	margin-right: 15px;
}

body.open-image-gallary{
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.main_viewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 300ms ease-in-out opacity;
    z-index: 10;
}

.main_viewer .full-img{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	transform: scale(.4);
	transition: 300ms ease-in-out transform;
}
.main_viewer .full-img .img-wrapper{
	width: 500px;
	position: relative;
}
@media (max-width: 500px){
	.main_viewer .full-img .img-wrapper{
		padding: 0 15px;
	}
}
.main_viewer .full-img img{
	width: 100%;
	object-fit: cover;
	border: 2px solid #fff;
}
.close-viewer{
	font-size: 2.5rem;
	position: absolute;
	top: -73px;
	right: 0;
	border: none;
	color: rgb(213, 215, 212);
	background-color: transparent;
	cursor: pointer;
	z-index: 2;
	transition: 200ms ease-in-out;
}
.close-viewer:hover, .close-viewer:active, .close-viewer:focus{
	background-color: 0;
	outline: 0;
	color: rgb(206, 236, 171);
}

@media (max-width: 535px){
	.close-viewer{
		top: -73px;
	}
}
@media (max-width: 389px){
	.close-viewer{
		top: -73px;
	}
}
.show-full-img{
	opacity: 1;
	pointer-events: all;
}
.main_viewer .full-img.transition{
	transform: scale(1);
}

.all-products .hero__search{
	display: flex;
	align-items: center;
	position: relative;
}
.all-products .hero__search__form {
	width: 75%;
	height: 50px;
	border: 1px solid #ebebeb;
	position: relative;
	float: left;
}
.all-products .hero__search__form form {
	display: flex;
	align-items: center;
	width: 100%;
}
.all-products .hero__search__form form .hero__search__categories {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	padding-left: 18px;
	position: relative;
}
.all-products .hero__search__form form .hero__search__categories:after {
	height: 20px;
	width: 1px;
	background: #000000;
	margin: 0 15px;
	opacity: 0.1;
	content: "";
}

.all-products .hero__search__form form input {
	width: 100%;
	border: none;
	height: 48px;
	font-size: 16px;
	color: #b2b2b2;
	padding-left: 5px;
}
.all-products .hero__search__form form input:focus{
	border: unset !important;
	border-color: transparent !important;
	outline: 0;
	box-shadow: 0 0 0 1px rgb(235, 235, 235);
}
.all-products .hero__search__form form input::placeholder {
	color: #b2b2b2;
}

.all-products .hero__search__form form button {
	position: absolute;
	right: 0;
	top: -1px;
	height: 50px;
}

.all-products .site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 800;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: #7fad39;
	border: none;
}

.all-products .header__cart_top{
	margin-left: 20px;
}
.all-products .header__cart{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.all-products .header__cart ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.all-products .header__cart ul li {
	list-style: none;
	display: inline-block;
}
.all-products .header__cart ul li a {
  	position: relative;
  	display: block;
}
.all-products .header__cart ul li a i {
	font-size: 18px;
	color: #1c1c1c;
	margin-right: 5px;
}

@media (max-width: 767px){

	.all-products .hero__search{

	}
	.all-products .hero__search__form{
		width: 100%;
		height: 40px;
	}
	.all-products .hero__search__form form .hero__search__categories{
		display: none;
	}

	.all-products .hero__search__form form input {
		height: 38px;
		padding-left: 18px;
	}
	.all-products .hero__search__form form button {
		height: 40px;
	}
	.all-products .hero__search__form form .site-btn {
		padding: 10px;
		font-size: 12px;
	}

	.all-products .header__cart_top{
		position: absolute;
		top: -35px;
		right: 12px;
	}
} 

.gallery .cs--eli-section{
	margin-bottom: 40px;
}
.g-title h4{
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 20px;
	padding: 0 4px;
}
.g-img-wrapper {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}
.g-img-wrapper:not(:last-child):after{
	content: "";
	width: calc(100% - 8px);
	display: block;
	margin: 20px auto;
	border-bottom: 1px solid rgba(1, 105, 55, 0.18);
}
.gallery-col {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 992px) {
  .gallery-col {
  	-ms-flex: 33.33333333333333%;
	flex: 33.33333333333333%;
	max-width: 33.33333333333333%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-col {
  	-ms-flex: 50%;
	flex: 50%;
	max-width: 50%;
  }
  .g-title h4{
  	font-size: 18px;
  }
}

.gallery-inner{
	width: 100%;
}
.gallery-inner img{
	width: 100%;
	object-fit: cover;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.epin-wrapper{
	background: #f5fbee;
	padding: 20px 12px 20px;
}
.epin-btn {
  padding: 10px 15px;
  background: linear-gradient(90deg, #ceecab 0%, #86be4b 100%);
  color: #fff;
  border-radius: 6px;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.amount-bottom{
	padding: 10px 0;
	border-bottom: 1px solid rgba(7, 103, 57, 0.13);
	border-top: 1px solid rgba(7, 103, 57, 0.13);
	margin: 15px 0;
}
.amount-bottom .list-price{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	padding: 12px 0;
}
.amount-bottom .list-price:first-child{
	border-bottom: 1px solid rgba(7, 103, 57, 0.13);
}

.message-error{
	padding: 4px;
	display: block;
	width: 100%;
	color: rgb(225, 23, 23);
}
.skiptranslate{
    display: none !important;
}
#google_translate_element{
  display: none;
}
.sps--lang-wrap {
	position: absolute;
	right: 0;
	background: rgb(253, 211, 55);
}
.language--selector {
	position: relative;
}
.selected--lang{
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    background: #53a208;
    border-radius: 2px;
}
.selected--lang .c--flag{
    margin-right: 4px;
}
.selected--lang .c--name{
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}
.selected--lang .c--name:after{
    content: "\f0d7";
    font-family: 'Font Awesome 6 Sharp';
    font-weight: 900;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}
.selected--lang .c--name.active:after{
    content: "\f0d8";
}
.lang--dropdown{
    min-width: 150px;
    position: absolute;
    right: 0;
    margin-top: 5px;
    background: #444;
    box-shadow: 0 0 8px rgb(22, 22, 22);
    white-space: nowrap;
    display: none;
    z-index: 10;
}
.lang--dropdown.d--toggle{
    display: block;
}
.lang--dropdown-wrap{
}
.lang--dropdown-wrap a{
    display: block;
    width: 100%;
    padding: 8px 15px;
    color: #fff;
}
.lang--dropdown-wrap a span{
    color: #fff !important;
}
.lang--dropdown-wrap a.active{
    background: rgba(206, 236, 171, 0.57);
}
.lang--dropdown-wrap a.active span{
   color: #fff !important;
}
.lang--dropdown-wrap a:hover{
    background: rgb(206, 236, 171);
    color: #000;
}
.lang--dropdown-wrap a:hover span{
   color: #000 !important;
}

/* rgb(63, 107, 17);*/