@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Portfolio Template Styles */
:root {
	--white-color: #ffffff;
	--black-color: #000000;
    --primary-color: #C18250;
	--secondary-color: #EDEAE6;
    --secondary-color-2: #E6E3CE;
    --secondary-color-3: #FAF4ED;
	--heading-color: #1D2323;
	--section-bg-1: #ECE4D7;
    --section-bg-2: #03000C;
    --text-color: #545C5C;
	--border-color: #B3AFAB;
	--border-color2: #E5E5E5;
	--font-roboto: "Roboto", sans-serif;
	--font-playfair: "Playfair", serif;
	--transition: all 0.5s;
}


/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
body, html {
	font-family: var(--font-roboto);
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	color: #333333;
	margin: 0;
	background-color: var(--white-color);
  	transition: var(--transition);
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
a {
	color: #797979;
	text-decoration: none;
	transition: var(--transition);
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-roboto);
	font-weight: 500;
	margin: 0;
}
p{
	margin: 0;
	padding: 0;
}
figure{
	margin: 0 !important;
  }
.ecv3_primary_btn{
	font-size: 14px;
	line-height: 24px;
    font-weight: 400;
	color: var(--text-color);
	border: 1px solid var(--border-color) !important;
	background: transparent;
	padding: 10px 25px;
	text-transform: uppercase;
	letter-spacing: 3px;
	transform: var(--transition);
	display: inline-flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
	min-width: 140px;
}  
.ecv3_primary_btn:hover{
	color: var(--white-color);
	background: var(--primary-color);
	border: 1px solid var(--primary-color) !important;
}

/*--------- Comman css End -------*/
/*--------- Header css Start -------*/
.ecv3_top_header_wrapper{
	background-color: var(--white-color);
	text-align: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color2);
}
.ecv3_top_email{
	display: flex;
	align-items: center;
	gap: 10px;
}
.ecv3_top_email_icon{
	position: relative;
}
.ecv3_top_email_icon .header_email_icon{
	color: var(--primary-color);
}
.ecv3_top_email p{
	font-size: 14px;
	line-height: 24px;
	color: var(--heading-color);
	font-weight: 400;
}
.ecv3_top_left{
	display: flex;
	align-items: center;
	gap: 35px;
}
.ecv3_top_social_icons .social-icons{
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-end;
}
.ecv3_top_social_icons .social-icons li a{
	color: var(--heading-color);
	font-size: 14px;
}
.ecv3_top_social_icons .social-icons li a:hover{
	color: var(--primary-color);
}
.ecv3_header_wrapper{
	background-color: var(--white-color);
	position: relative;
	z-index: 10;
}
.ecv3_header_logo_wrapper img{
	max-width: 177px;
	width: 100%;
}
.ecv3_header_wrapper.is-sticky{
	position: sticky;
	top: 0;
	transform: translateY(-20px);
	animation: stickyFadeIn 0.4s cubic-bezier(.4,0,.2,1) forwards;
	backdrop-filter: blur(33px);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
}
.ecv3_header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 27px 0;
}
  @keyframes stickyFadeIn {
	from { opacity: 0; transform: translateY(-20px);}
	to   { opacity: 1; transform: translateY(0);}
  }
.ecv3_nav_wrapper ul{
	display: flex;
	align-items: center;
	gap: 15px;
}
.ecv3_nav_wrapper ul li a{
	color: var(--text-color);
	font-size: 16px;
	line-height: 23px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 5px 10px;
	position: relative;
}
.ecv3_nav_wrapper ul li a:hover,
.ecv3_nav_wrapper ul li a.active{
	transition: var(--transition);
	color: var(--primary-color);
}
.ecv3_nav_wrapper ul li a:before {
	content: '[';
	position: absolute;
	right: 50%;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 400;
	opacity: 0;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.ecv3_nav_wrapper ul li a:after{
	content: ']';
    position: absolute;
    left: 50%;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    opacity: 0;
    top: 2px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ecv3_nav_wrapper ul li a.active:before, .ecv3_nav_wrapper ul li:hover a:before {
	right: 95%;
	opacity: 1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.ecv3_nav_wrapper ul li a.active:after, .ecv3_nav_wrapper ul li:hover a:after {
        left: 95%;
        opacity: 1;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
}
.ecv3_header_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.ecv3_header_social ul li a{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	color: var(--text-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: #efefef;
}
.ecv3_header_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.el_header_mob_toggle_btn{
	display: none;
	transform: rotate(180deg);
    cursor: pointer;
}
#close-sidebar{
	display: none;
}
/*--------- Header css End -------*/
/*--------- Hero Banner css Start -------*/
.ecv3_banner_slide{
	display: flex;
	height: 800px;
	background-color: #efe3d7;
	position: relative;
}
.ecv3_banner_product_img{
	max-width: 500px;
	flex: 0 0 500px;
	-webkit-animation: movebounce 3.9s linear infinite;
    animation: movebounce 3.9s linear infinite;
}
.ecv3_banner_product_img img{
	width: 100%;
}
@keyframes movebounce {
	0% {
	  transform: translateY(0px); }
	50% {
	  transform: translateY(20px); }
	100% {
	  transform: translateY(0px); } 
}
.ecv3_banner_content_wrapper{
	display: flex;
    align-items: center;
	flex: 0 0 70%;
    max-width: 70%;
	padding-left: 100px;
	position: relative;
	z-index: 1;
}
.ecv3_banner_content{
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
}
.ecv3_banner_right_img{
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 694px;
	width: 100%;
}
.ecv3_banner_right_img img{
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ecv3_banner_wrapper .slick-dots{
	bottom: 70px;
}
.ecv3_banner_wrapper .slick-dots li{
	width: 10px;
    height: 10px;
	margin: 0 6px;
}
.ecv3_banner_wrapper .slick-dots li button:before{
	font-size: 35px;
	width: 10px;
    height: 10px;
	content: '';
	background: var(--primary-color);
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
	opacity: 0.8;
}
.ecv3_banner_wrapper .slick-dots li button{
	padding: 0;
	width: 10px;
    height: 10px;
}
.ecv3_banner_wrapper .slick-dots li.slick-active button:before{
	opacity: 1;
}
.ecv3_banner_wrapper .slick-dots li.slick-active button:after{
	border: 1px solid var(--primary-color);
	width: 16px;
    height: 16px;
	position: absolute;
	inset: -3px;
	content: '';
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ecv3_banner_content h5{
	font-size: 20px;
	line-height: 30px;
	color: var(--black-color);
	font-weight: 600;
	letter-spacing: 3px;
}
.ecv3_banner_content h2{
	font-size: 50px;
    line-height: 60px;
    color: var(--heading-color);
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 80%;
}
.ecv3_banner_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--black-color);
	font-weight: 400;
	max-width: 80%;
	margin-bottom: 20px;
}
.ecv3_banner_content .ecv3_primary_btn{
	margin-top: 20px;
	min-width: 180px;
}
.ecv3_banner_wrapper .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.ecv3_banner_product_detail{
	background-color: var(--white-color);
	padding: 100px 0;
	padding-bottom: 80px;
}
.ecv3_banner_product_detail_card{
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 15px;
}
.ecv3_banner_product_icon{
	background-color: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	border: 1px solid var(--border-color);
	margin-top: 5px;
	position: relative;
}
.ecv3_banner_product_icon .banner_icon{
	color: var(--primary-color);
	font-size: 20px;
}
.ecv3_banner_product_detail_card:hover .ecv3_banner_product_icon{
	animation-name: wobble-horizontal;
		animation-duration: 1s;
		animation-timing-function: ease-in-out;
		animation-iteration-count: 1;
}
/* Wobble Top */
@keyframes wobble-horizontal {
	16.65% {
		transform: translateX(8px);
	}

	33.3% {
		transform: translateX(-6px);
	}

	49.95% {
		transform: translateX(4px);
	}

	66.6% {
		transform: translateX(-2px);
	}

	83.25% {
		transform: translateX(1px);
	}

	100% {
		transform: translateX(0);
	}
}
.ecv3_banner_product_cont p{
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
	max-width: 95%;
}
.ecv3_banner_product_cont h5{
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--heading-color);
	margin-bottom: 10px;
}
@keyframes slideUpFadeIn {
	0% {
	  opacity: 0;
	  transform: translateY(40px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .ecv3_banner_content h5,
  .ecv3_banner_content h2,
  .ecv3_banner_content p,
  .ecv3_banner_content a,
  .ecv3_banner_product_img img{
	opacity: 0;
  }
  .ecv3_banner_slide.animated .ecv3_banner_product_img img {
	animation: slideUpFadeIn 0.6s 0s forwards;
  }
  .ecv3_banner_slide.animated .ecv3_banner_content h5 {
	animation: slideUpFadeIn 0.6s 0.1s forwards;
  }
  .ecv3_banner_slide.animated .ecv3_banner_content h2 {
	animation: slideUpFadeIn 0.6s 0.3s forwards;
  }
  .ecv3_banner_slide.animated .ecv3_banner_content p {
	animation: slideUpFadeIn 0.6s 0.5s forwards;
  }
  .ecv3_banner_slide.animated .ecv3_banner_content a {
	animation: slideUpFadeIn 0.6s 0.7s forwards;
  }

/*--------- Hero Banner css End -------*/
/*--------- About css Start -------*/
.ecv3_about_image img{
	width: 100%;
}
.ecv3_about_content{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: column;
	justify-content: center;
    height: 100%;
    padding-left: 50px;
	align-items: flex-start;
}
.ecv3_about_content h3{
	font-size: 40px;
	line-height: 50px;
	font-weight: 500;
	color: var(--heading-color);
	max-width: 500px;
}
.ecv3_about_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	margin: 30px 0;
}
.ecv3_about_btn .ecv3_primary_btn{
	margin-right: 10px;
}
.ecv3_about_list{
	display: flex;
	gap: 50px;
	margin-bottom: 45px;
}
.ecv3_about_list ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.ecv3_about_list ul li{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	position: relative;
	padding-left: 22px;
}
.ecv3_about_list ul li::before{
	position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 8px;
    left: 0;
}
/*--------- About css End -------*/
/*--------- Guide css Start -------*/
.ecv3_guide_wrapper{
	padding: 100px 0;
}
.ecv3_heading{
	text-align: center;
}
.ecv3_guide_image{
	-webkit-border-radius: 50px 0px 50px 0px;
    -moz-border-radius: 50px 0px 50px 0px;
    border-radius: 50px 0px 50px 0px;
	overflow: hidden;
	width: 100%;
	height: 518px;
}
.ecv3_guide_image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	-webkit-border-radius: 50px 0px 50px 0px;
    -moz-border-radius: 50px 0px 50px 0px;
    border-radius: 50px 0px 50px 0px;
}
.custom_row:hover .ecv3_guide_image img{
	-webkit-transform: scale(1.1) rotate(2deg);
    -moz-transform: scale(1.1) rotate(2deg);
    -o-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ecv3_heading h3{
	font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: var(--heading-color);
	margin-bottom: 20px;
}
.ecv3_heading p{
	font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
	max-width: 650px;
    margin: 0px auto;
}
.ecv3_guide_wrapper .ecv3_heading{
	margin-bottom: 60px;
}
.ecv3_guide_content{
	padding-left: 70px;
}
.ecv3_guide_content h4{
	font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: var(--transition);
}
.custom_row:hover .ecv3_guide_content h4{
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	transition: var(--transition);
}
.ecv3_guide_content h3{
	font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: var(--heading-color);
	margin-bottom: 20px;
}
.ecv3_guide_content p{
	font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
}
.ecv3_guide_wrapper .custom_row:nth-child(even){
	flex-direction: row-reverse;
}
.ecv3_guide_wrapper .custom_row:nth-child(even) .ecv3_guide_content{
	padding-left: 0;
	padding-right: 70px;
}
/*--------- Guide css End -------*/
/*--------- Afterbefore css Start -------*/
/*--------- Afterbefore css End -------*/
.ecv3_afterbefore_wrapper{
	background-color: var(--section-bg-1);
	overflow: hidden;
}
.ecv3_afterbefore_wrapper .row{
	margin: 0 -5px;
}
.ecv3_afterbefore_wrapper .row .custom_col{
	padding: 0 5px;
}
.ecv3_before_wrapper, .ecv3_after_wrapper{
	position: relative;
	height: 490px;
	display: flex;
}
.ecv3_before_wrapper img{
	width: 250px;
	height: 100%;
	object-fit: cover;
	margin-left: auto;
}
.ecv3_after_wrapper img{
	width: 250px;
	height: 100%;
	object-fit: cover;
	margin-right: auto;
}
.ecv3_before_content{
	position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ecv3_before_content h5{
	font-size: 18px;
    line-height: 26px;
    color: var(--heading-color);
	text-transform: uppercase;
	font-weight: 600;
}
.ecv3_before_content h3{
	font-size: 48px;
    line-height: 55px;
    color: var(--primary-color);
	font-weight: 600;
    margin-top: 20px;
}
.ecv3_after_content{
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
	text-align: right;
}
.ecv3_after_content h5{
	font-size: 18px;
    line-height: 26px;
    color: var(--heading-color);
	text-transform: uppercase;
	font-weight: 600;
}
.ecv3_after_content h3{
	font-size: 48px;
    line-height: 55px;
    color: var(--primary-color);
	font-weight: 600;
    margin-top: 20px;
}
/*--------- ingredients css Start -------*/
.ecv3_ingredients_wrapper{
	padding: 100px 0;
}
.ecv3_ingredientst_content h3{
	font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: var(--heading-color);
    max-width: 500px;
	margin-bottom: 25px;
}
.ecv3_ingredientst_content p{
	font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
}
.ecv3_ingredientst_content h4{
	font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.ecv3_ingredientst_content p{
	font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}
.ecv3_ingredientst_icon{
	margin-bottom: 15px;
	position: relative;
}
.ecv3_ingredientst_icon .ingredientst_icon{
	font-size: 26px;
	color: var(--primary-color);
}
.ecv3_ingredientst_card{
	margin-top: 30px;
}
.ecv3_ingredient_about_image img{
	-webkit-animation: movebounce 3.9s linear infinite;
    animation: movebounce 3.9s linear infinite;
	width: 100%;
}
/*--------- ingredients css End -------*/
/*--------- testimonail css Start -------*/
.ecv3_testimonail_wrapper{
	padding: 100px 0;
	background-color: var(--section-bg-1);
}
.ecv3_testimonail_wrapper .ecv3_heading{
	margin-bottom: 60px;
}
.ecv3_testimonail_inner{
	display: flex;
	padding-left: 80px;
}
.ecv3_testimonail_slide_content{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: column;
	padding: 30px;
	background: var(--white-color);
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 800px;
    margin: 0px auto;
}
.ecv3_client_img_wrapper{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}
.ecv3_client_img{
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.ecv3_client_img img{
	width: 100%;
	height: 100%;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	border: 3px solid var(--white-color);
	object-fit: cover;
}
.ecv3_testimonail_slide_content p{
	font-size: 28px;
    line-height: 38px;
    color: var(--black-color);
    font-weight: 400;
	font-style: italic;
	font-family: var(--font-playfair);
}
.ecv3_testimonail_slide_content h5{
	font-size: 16px;
    line-height: 26px;
    color: var(--primary-color);
    font-weight: 700;
}
.ecv3_testimonail_slide_content h6{
	font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 400;
	font-style: italic;
}
.ecv3_testimonial_wrapper .slick-slider .col{
	padding: 15px;
}
.ecv3_testimonail_wrapper .slick-prev:before, .ecv3_testimonail_wrapper .slick-next:before{
	color: var(--white-color);
	opacity: 1;
	font-size: 21px;
}
.ecv3_testimonail_wrapper .slick-prev{
		left: calc(20% - 90px);
		top: 50%;
		transform: translateY(-50%);
		width: 45px;
		background-color: var(--primary-color);
		height: 45px;
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
}
.ecv3_testimonail_wrapper .slick-next{
	right: calc(20% - 90px);
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
    background-color: var(--primary-color);
    height: 45px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.ecv3_testimonail_wrapper .slick-slider:hover .slick-prev{
	opacity: 1;
	visibility: visible;
	left: calc(20% - 70px);
	transition: var(--transition);
}
.ecv3_testimonail_wrapper .slick-slider:hover .slick-next{
	opacity: 1;
	visibility: visible;
	right: calc(20% - 70px);
	transition: var(--transition);
}
.ecv3_testimonail_wrapper .slick-disabled{
	opacity: 0.6 !important;
}
.ecv3_client_star{
	position: relative;
}
.ecv3_client_star_wrap{
	display: flex;
	gap: 5px;
	align-items: center;
	margin-bottom: 20px;
}
.ecv3_client_star .star_icon{
	color: #fac12e;
}
.ecv3_client_img_content{
	text-align: left;
}
/*--------- testimonail css End -------*/
/*--------- Offer css Start -------*/
.ecv3_offers_wrapper{
	padding-bottom: 100px;
}
.ecv3_offers_card{
	display: flex;
	background-color: var(--secondary-color);
	align-items: center;
}
.ecv3_offers_img{
	flex: 0 0 49%;
	max-width: 49%;
	height: 430px;
	overflow: hidden;
}
.ecv3_offers_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ecv3_offers_card:hover .ecv3_offers_img img{
	-webkit-transform: scale(1.1) rotate(2deg);
    -moz-transform: scale(1.1) rotate(2deg);
    -o-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ecv3_offers_content{
	flex: 0 0 51%;
	max-width: 51%;
	text-align: center;
	padding: 25px 15px;
}
.ecv3_offers_content h4{
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: 15px;
}
.ecv3_offers_content img{
	max-width: 160px;
	width: 100%;
}
.ecv3_offers_content h3{
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: var(--heading-color);
	margin-top: 15px;
	margin-bottom: 5px;
}
.ecv3_offers_content p{
	font-size: 16px;
	line-height: 25px;
	color: var(--text-color);
	margin-bottom: 5px;
}
.ecv3_offers_content h5{
	font-size: 16px;
	line-height: 25px;
	font-weight: 500;
	color: var(--heading-color);
}
.ecv3_offers_content .ecv3_primary_btn{
	padding: 7px 15px;
	letter-spacing: 1px;
	min-width: 130px;
	margin-top: 15px;
	margin-right: 10px;
}
.ecv3_offers_card_second{
	flex-direction: row-reverse;
	background-color: var(--secondary-color-2);
}
/*--------- Offer css End -------*/
/*--------- Blog css Start -------*/
.ecv3_blog_wrapper{
	padding: 100px 0;
}
.ecv3_blog_wrapper .ecv3_heading{
	margin-bottom: 30px;
}
.ecv3_blog_card_wrapper{
	margin-top: 30px;
}
.ecv3_blog_img{
	width: 100%;
	height: 250px;
	overflow: hidden;
}
.ecv3_blog_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.ecv3_blog_card_wrapper:hover .ecv3_blog_img img{
	transform: scale(1.1);
	transition: var(--transition);
}
.ecv3_blog_img_cont{
	padding: 25px 0;
	text-align: center;
}
.ecv3_blog_img_cont ul{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}
.ecv3_blog_img_cont ul li{
	font-size: 16px;
	line-height: 25px;
	color: var(--primary-color);
	font-weight: 500;
}
.ecv3_blog_img_cont .blog_heading{
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	color: var(--heading-color);
	display: block;
	margin: 10px 0;
	transition: var(--transition);
}
.ecv3_blog_card_wrapper:hover .blog_heading{
	color: var(--primary-color);
	transition: var(--transition);
}
.ecv3_blog_img_cont p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}
.ecv3_blog_img_cont .ecv3_primary_btn{
	margin-top: 25px;
	margin-right: 10px;
}
/*--------- Blog css End -------*/
/*--------- Footer css Start -------*/
.ecv3_footer_wrapper{
	padding-top: 60px;
	background: var(--section-bg-1);
	position: relative;
}
.ecv3_footer_wrapper #row-edit{
	position: relative;
	z-index: 1;
}
.ecv3_footer_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.ecv3_footer_social ul li a{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	color: var(--primary-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: var(--white-color);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.09)
}
.ecv3_footer_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.ecv3_footer_center{
	margin-top: 35px;
}
.ecv3_footer_center h3{
	font-size: 20px;
    line-height: 30px;
    font-weight: 400;
	text-transform: uppercase;
    color: var(--heading-color);
}
.ecv3_footer_links{
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 25px;
	align-items: flex-start;
}
.ecv3_footer_links a{
	color: var(--text-color);
	position: relative;
}
.ecv3_footer_links a:after{
	content: '';
    border: 1px solid var(--primary-color);
    width: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -3px;
    transition: var(--transition);
	opacity: 0;
	visibility: hidden;
}
.ecv3_footer_links a:hover:after{
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.ecv3_footer_links a:hover{
	color: var(--primary-color);
}
.ecv3_footer_contact{
	display: flex;
	align-items: center;
	gap: 15px;
}
.ecv3_footer_contact_icon{
	position: relative;
}
.ecv3_footer_contact .contact_footer_icon{
	width: 20px;
	flex: 0 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
}
.ecv3_footer_contact p{
	word-break: break-word;
	color: var(--text-color);
}
.ecv3_footer_contact_wrap{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}
.ecv3_botttom_footer{
	text-align: center;
	margin-top: 60px;
	padding: 20px 0;
	position: relative;
	z-index: 1;
	background-color: var(--white-color);
}
.ecv3_botttom_footer p{
	font-size: 14px;
	color: var(--black-color);
}
.ecv3_top_footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 35px;
	border-bottom: 1px solid #B3AFAB;

}
.ecv3_top_footer_left img{
	max-width: 180px;
	width: 100%;
}
.ecv3_top_footer_left h4{
	font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--heading-color);
}
.ecv3_top_footer_left p{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
	margin-top: 15px;
}
.ecv3_top_footer_right .social-icons{
	display: flex;
	align-items: center;
	gap: 12px;
}
.ecv3_top_footer_right .social-icons li a{
	width: 40px;
    height: 40px;
	flex: 0 0 40px;
    display: inline-block;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
} 
.ecv3_top_footer_right .social-icons li a:hover{
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
}
/*--------- Footer css End -------*/

/*--------- Theme Color css Start -------*/
#color-1{
	background: #e38612;
	border: 1px solid #e38612;
  }
  #color-2{
	background: #38cfea;
	border: 1px solid #38cfea;
  }
  #color-3{
	background: #de487f;
	border: 1px solid #de487f;
  }
.color-style-one .bs_testi_inpage_slider, .color-style-one .btn-primary {
   background-color: #e38612;
}
.color-style-2 .bs_testi_inpage_slider, .color-style-2 .btn-primary {
    background-color: #38cfea;
}
.color-style-3 .bs_testi_inpage_slider, .color-style-3 .btn-primary {
    background-color: #de487f;
}
/*--------- Theme Color css End -------*/

/*--------- Media css start -------*/
@media (max-width: 1600px) {
	.ecv3_banner_content_wrapper{
		padding-left: 30px;
		flex: 0 0 80%;
		max-width: 80%;
	}
	.ecv3_banner_product_img {
		max-width: 400px;
		flex: 0 0 400px;
	}
}
@media (max-width: 1400px){
	.ecv3_banner_slide{
		height: 600px;
	}
	.ecv3_banner_right_img {
		max-width: 550px;
	}
}
@media (min-width: 1200px) {
    .container{
        max-width: 1200px;
    }
}
@media (max-width: 1199px){
	.container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
	.ecv3_header_wrapper{
		padding: 0;
	}
	.ecv3_banner_content h2 {
		font-size: 34px;
		line-height: 40px;
	}
	.ecv3_banner_content{
		padding: 20px;
	}
	.ecv3_nav_wrapper ul {
		gap: 10px;
	}
	.ecv3_nav_wrapper ul li a{
		font-size: 15px;
	}
	.ecv3_banner_product_img {
        max-width: 300px;
        flex: 0 0 300px;
    }
	.ecv3_about_content h3 {
		font-size: 28px;
		line-height: 30px;
	}
	.ecv3_about_content{
		padding-left: 0;
	}
	.ecv3_before_wrapper, .ecv3_after_wrapper {
		min-height: 350px;
	}
	.ecv3_after_content h3, .ecv3_before_content h3 {
		font-size: 34px;
		line-height: 44px;
		margin-top: 15px;
	}
}
@media (max-width: 991px){
	.ecv3_header_wrapper {
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
	}
	.el_header_mob_toggle_btn{
		display: block;
	}
	.ecv3_header_nav_wrapper{
		position: fixed;
        background: var(--white-color);
        left: -310px;
        top: 0;
        height: 100vh;
        bottom: 0;
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);
        width: 280px;
        z-index: 10;
        overflow-y: auto;
        transition: var(--transition);
	}
	.sidebar-active .ecv3_header_nav_wrapper{
		left: 0;
	}
	.ecv3_nav_wrapper ul{
		display: block;
		padding: 35px 0px;
	}
	.ecv3_nav_wrapper ul li a{
        width: 100%;
        display: inline-block;
        padding: 10px 15px;
        border-bottom: 1px solid #E4E4E4;
		font-weight: 500;
	}
	.ecv3_nav_wrapper ul li a.active{
		background: var(--primary-color);
		color: var(--white-color);
	}
	.ecv3_nav_wrapper ul li a.active:after, .ecv3_nav_wrapper ul li:hover a:after{
		display: none;
	}
	#close-sidebar{
		display: block;
	}
	.ecv3_nav_wrapper{
		position: relative;
	}
	#close-sidebar{
		position: absolute;
		right: 9px;
        top: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 25px;
		height: 25px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-khtml-border-radius: 3px;
		border: 1px solid #E4E4E4;
		background: #fff;
		cursor: pointer;
		z-index: 1;
		font-size: 21px;
		color: var(--primary-color);
	}
	.ecv3_header_inner {
		padding: 20px 0;
	}
	.ecv3_banner_right_img{
		display: none;
	}
	.ecv3_banner_content_wrapper {
        padding-left: 20px;
        flex: 0 0 100%;
        max-width: 100%;
    }
	.ecv3_banner_slide {
        height: 450px;
    }
	.ecv3_banner_wrapper .slick-dots {
		bottom: 30px;
	}
	.ecv3_banner_content p{
		max-width: 100%;
	}
	.ecv3_about_content {
        margin-top: 25px;
    }
	.ecv3_banner_product_detail, .ecv3_guide_wrapper, .ecv3_ingredients_wrapper, .ecv3_testimonail_wrapper, .ecv3_blog_wrapper {
		padding: 60px 0;
	}
	.ecv3_guide_content h3, .ecv3_ingredientst_content h3, .ecv3_heading h3 {
		font-size: 30px;
		line-height: 40px;
	}
	.ecv3_guide_content {
		padding-left: 40px;
	}
	.ecv3_guide_wrapper .custom_row:nth-child(even) .ecv3_guide_content {
		padding-left: 0;
		padding-right: 40px;
	}
	.ecv3_before_wrapper, .ecv3_after_wrapper {
        min-height: auto;
    }
	.ecv3_offers_wrapper {
		padding-bottom: 60px;
	}
	.ecv3_testimonail_wrapper .slick-prev, .ecv3_testimonail_wrapper .slick-next{
		visibility: visible;
		opacity: 1;
	}
	.ecv3_nav_wrapper ul li a:before, .ecv3_nav_wrapper ul li a:after{
		display: none;
	}
	.ecv3_guide_image{
		height: 410px;
	}
}
@media (max-width: 767px){
	.container{
        max-width: 100%;
		padding: 0 15px;
    }
	.ecv3_banner_content h2 {
        font-size: 26px;
        line-height: 36px;
    }
	.ecv3_banner_content .ecv3_primary_btn {
		margin-top: 30px;
		min-width: 135px;
	}
	.ecv3_banner_product_img {
        max-width: 250px;
        flex: 0 0 250px;
		margin-bottom: 30px;
    }
	.ecv3_banner_content_wrapper{
		flex-direction: column;
		padding: 30px 0;
	}
	.ecv3_banner_content {
        align-items: center;
		text-align: center;
    }
	.ecv3_banner_slide {
        height: 620px;
    }
	.ecv3_banner_product_detail {
		padding: 60px 0;
	}
	.ecv3_about_content h3 {
		font-size: 25px;
        line-height: 35px;
    }
	.ecv3_about_content p {
		margin: 25px 0;
	}
	.ecv3_heading h3 {
		font-size: 25px;
		line-height: 35px;
	}	
	.ecv3_guide_image, .ecv3_guide_image img {
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
	}
	.ecv3_guide_content {
		padding-left: 0;
		padding-top: 25px;
		margin-bottom: 30px;
	}
	.ecv3_guide_wrapper .ecv3_heading {
		margin-bottom: 40px;
	}
	.ecv3_guide_content h3 {
        font-size: 25px;
        line-height: 35px;
    }
	.ecv3_after_content h3, .ecv3_before_content h3, .ecv3_ingredientst_content h3 {
        font-size: 25px;
        line-height: 35px;
        margin-top: 10px;
    }
	.ecv3_guide_wrapper .custom_row:last-child .ecv3_guide_content{
		margin-bottom: 0;
	}
	.ecv3_ingredients_wrapper .row.align-items-center{
		flex-direction: column-reverse;
	}
	.ecv3_ingredient_about_image{
		max-width: 500px;
		margin: 0px auto;
	}
	.ecv3_ingredientst_content{
		margin-top: 30px;
	}
	.ecv3_offers_card_second {
		margin-top: 10px;
	}
	.ecv3_testimonail_wrapper .slick-prev{
		left: 0 !important;
	}
	.ecv3_testimonail_wrapper .slick-next{
		right: 0 !important;
	}
	.ecv3_testimonail_wrapper .ecv3_heading {
		margin-bottom: 40px;
	}
	.ecv3_testimonail_slide_content p {
		font-size: 22px;
		line-height: 30px;
	}
	.ecv3_guide_image{
		height: auto;
	}
	.ecv3_before_wrapper, .ecv3_after_wrapper{
    	height: 420px;
	}
}
@media (max-width: 580px){
	.ecv3_top_header_wrapper{
		display: none;
	}
	.ecv3_banner_product_img {
        max-width: 200px;
        flex: 0 0 200px;
        margin-bottom: 25px;
    }
	.ecv3_banner_content h2 {
        font-size: 20px;
        line-height: 25px;
    }
	.ecv3_banner_content h5 {
		font-size: 14px;
		line-height: 20px;
	}
	.ecv3_banner_content .ecv3_primary_btn {
        margin-top: 30px;
        min-width: 115px;
        font-size: 12px;
        letter-spacing: 1px;
        padding: 5px;
    }
	.ecv3_about_list {
		gap: 15px;
		flex-direction: column;
	}
	.ecv3_after_content h3, .ecv3_before_content h3 {
        font-size: 18px;
        line-height: 25px;
	}
	.ecv3_before_content h5, .ecv3_after_content h5 {
		font-size: 14px;
		line-height: 23px;
	}
	.ecv3_afterbefore_wrapper .row {
		margin: 0 -2px;
	}
	.ecv3_afterbefore_wrapper .row .custom_col {
		padding: 0 2px;
	}
	.ecv3_offers_card{
		flex-direction: column;
	}
	.ecv3_offers_img {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.ecv3_offers_content h3 {
		font-size: 18px;
		line-height: 28px;
	}
	.ecv3_offers_content h4 {
		font-size: 16px;
	}
	.ecv3_testimonail_wrapper .slick-prev, .ecv3_testimonail_wrapper .slick-next{
		width: 35px;
		height: 35px;
	}
	.ecv3_top_footer{
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.ecv3_footer_wrapper {
		padding-top: 40px;
	}
	.ecv3_botttom_footer {
		margin-top: 40px;
	}
	.ecv3_before_wrapper, .ecv3_after_wrapper {
        height: 265px;
    }
	.ecv3_blog_img{
		height: auto;
	}
}
/*--------- Media css end -------*/
/*--------- Edit Mode css Start -------*/
.edit-mode .ecv3_top_left .icon-edit-btn-wrapper{
	left: -5px;
    top: auto;
    bottom: -24px;
}
.edit-mode .ecv3_top_left{
	column-gap: 60px;
}
.edit-mode .slick-slider .row-edit-btn,
.edit-mode .ecv3_guide_wrapper .row-edit-btn{
	display: none !important;
}
.edit-mode .ecv3_banner_content h5, .edit-mode .ecv3_banner_content h2, .edit-mode .ecv3_banner_content p, .edit-mode .ecv3_banner_content a, .edit-mode .ecv3_banner_product_img img,
.editable-section .ecv3_banner_content h5, .editable-section .ecv3_banner_content h2, .editable-section .ecv3_banner_content p, .editable-section .ecv3_banner_content a, .editable-section .ecv3_banner_product_img img{
	opacity: 1;
}
.edit-mode .ecv3_banner_slide{
	margin-bottom: 50px;
}
.edit-mode .ecv3_primary_btn .anchor-button-wrapper{
	letter-spacing: 0;
}
.edit-mode .ecv3_banner_product_detail_card{
	padding-top: 45px;
}
.edit-mode .ecv3_banner_product_cont h5{
	margin-bottom: 20px;
}
.edit-mode .ecv3_banner_product_detail_card:hover .ecv3_banner_product_icon {
    animation-duration: 0s;
    animation-iteration-count: 0;
}
.edit-mode .ecv3_banner_product_icon .icon-edit-btn-wrapper{
	left: 0;
    top: -30px;
}
.edit-mode .ecv3_about_wrapper{
	padding: 50px 0;
}
.edit-mode .ecv3_about_list ul li{
	margin-bottom: 20px;
}
.edit-mode .ecv3_guide_wrapper .column-toolbar{
	width: auto;
}
.edit-mode .custom_row{
	margin-bottom: 70px;
}
.edit-mode .ecv3_guide_image,
.edit-mode .ecv3_offers_img{
	overflow: visible;
}
.edit-mode .custom_row:hover .ecv3_guide_image img,
.edit-mode .ecv3_offers_card:hover .ecv3_offers_img img,
.edit-mode .ecv3_blog_card_wrapper:hover .ecv3_blog_img img {
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}
.edit-mode .ecv3_afterbefore_wrapper,
.edit-mode .ecv3_blog_img{
	overflow: visible;
}
.edit-mode .ecv3_ingredient_about_image img{
	animation: 0s 
}
.edit-mode .ecv3_ingredientst_card .icon-edit-btn-wrapper{
	left: 0px;
    top: -33px;
}
.edit-mode .ecv3_ingredientst_card {
    margin-top: 45px;
}
.edit-mode .ecv3_ingredientst_content .col{
	margin-bottom: 80px;
}
.edit-mode .ecv3_ingredientst_content #row-edit{
	margin-top: 60px;
}
.edit-mode .ecv3_testimonail_slide_content{
	max-width: 100%;
}
.edit-mode .ecv3_testimonail_wrapper .column-toolbar{
	left: 0;
}
.edit-mode .ecv3_testimonail_wrapper .col{
	margin-bottom: 50px;
}
.edit-mode .ecv3_testimonail_slide_content h5{
	margin-bottom: 20px;
}
.edit-mode .ecv3_client_star_wrap .icon-edit-btn-wrapper{
	left: -5px;
    top: -25px;
}
.edit-mode .ecv3_client_star_wrap{
	column-gap: 90px;
}
.edit-mode .ecv3_blog_card_wrapper {
    margin-top: 0;
    margin-bottom: 50px;
}
.edit-mode .ecv3_banner_wrapper .slick-slider .col .column-toolbar::after{
	content: 'Slide Item';
	white-space: nowrap;
}
.color-switcher, .edit-mode .ecv3_offers_content .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .ecv3_blog_img_cont .anchor-button-wrapper .anchor-duplicate-btn, 
.edit-mode .ecv3_footer_contact_icon .icon-edit-btn-wrapper::after{
	display: none !important;
}
.edit-mode .ecv3_footer_links a{
	margin-top: 20px;
}
.edit-mode .ecv3_footer_contact_icon .icon-edit-btn-wrapper{
    left: -3px;
    top: -30px;
}
.edit-mode .ecv3_footer_contact{
	margin-top: 30px;
}
/*--------- Edit Mode css end -------*/
