@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* Portfolio Template Styles */
:root {
	--white-color: #ffffff;
	--black-color: #000000;
    --primary-color: #663130;
	--heading-color: #080808;
	--background-color: #FBEADE;
	/* --subheading-color: #f9004d; */
    --text-color: #676666;
	--gradient-hover-color: linear-gradient(145deg, #6a67ce, #fc636b);
	--plat-background-gradient: linear-gradient(145deg, #e2e8ec, #ffffff); 
	--plat-boxshadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
	--border-color: #dce1e4;
    --light-bg: #ecf0f1;
	--font-belleza: "Belleza", sans-serif;
	--font-worksans: "Work Sans", sans-serif;
	--transition: all 0.5s;
}


/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
body, html {
	font-family: var(--font-worksans);
	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-belleza);
	font-weight: 500;
	margin: 0;
}
p{
	margin: 0;
	padding: 0;
}
figure{
	margin: 0 !important;
  }
.ecv2_primary_btn{
	font-size: 12px;
	line-height: 24px;
    font-weight: 600;
	color: var(--white-color);
	background: var(--primary-color);
	padding: 10px 25px;
	text-transform: uppercase;
	letter-spacing: 3px;
	transform: var(--transition);
	display: inline-flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
	position: relative;
	font-family: var(--font-worksans);
	overflow: hidden;
	min-width: 180px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}  
.ecv2_primary_btn::before {
	background: #fff;
	content: "";
	height: 155px;
	opacity: 0;
	position: absolute;
	top: -50px;
	transform: rotate(35deg);
	width: 20px;
	transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
	left: -50%;
  }
  .ecv2_primary_btn::after {
	background: #fff;
    content: "";
    height: 40px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transform: rotate(83deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 150px;
    left: -100%;
  }
.ecv2_primary_btn:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transform: translateY(-3px);
  	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}
.ecv2_primary_btn:hover::before {
	left: 120%;
	opacity: 0.5s;
  }
  
  .ecv2_primary_btn:hover::after {
	left: 200%;
	opacity: 0.6;
  }

/*--------- Comman css End -------*/
/*--------- Header css Start -------*/
.ecv2_top_header_wrapper{
	background-color: var(--background-color);
	text-align: center;
	padding: 7px 15px;
}
.ecv2_header_logo_wrapper img{
	max-width: 170px;
}
.ecv2_top_header_wrapper p{
	font-size: 14px;
	line-height: 26px;
	color: var(--black-color);
}
.ecv2_header_wrapper{
	background-color: var(--white-color);
	position: relative;
	z-index: 10;
	padding: 0 30px;
}
.ecv2_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);
}
.ecv2_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);}
  }
.ecv2_nav_wrapper ul{
	display: flex;
	align-items: center;
	gap: 20px;
}
.ecv2_nav_wrapper ul li a{
	color: var(--heading-color);
	font-size: 13px;
	line-height: 23px;
	font-family: var(--font-worksans);
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 10px;
	position: relative;
}
.ecv2_nav_wrapper ul li a:hover,
.ecv2_nav_wrapper ul li a.active{
	transition: var(--transition);
	color: var(--primary-color);
}
.ecv2_nav_wrapper ul li a:after{
	content: '';
	border: 1px solid transparent;
	width: 0;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0px auto;
	bottom: -3px;
	transition: var(--transition);
}
.ecv2_nav_wrapper ul li a.active:after, .ecv2_nav_wrapper ul li:hover a:after {
    content: '';
    border: 1px solid var(--primary-color);
    width: 30px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -3px;
    transition: var(--transition);
}
.ecv2_header_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.ecv2_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;
}
.ecv2_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 -------*/
.ecv2_banner_slide{
	display: flex;
	height: 860px;
}
.ecv2_banner_left_img{
	flex: 0 0 33.33%;
	max-width: 33.33%;
}
.ecv2_banner_left_img img{
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ecv2_banner_content{
	flex: 0 0 33.33%;
	max-width: 33.33%;
	background-color: #F9D2B3;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 40px;
    text-align: center;
}
.ecv2_banner_content::before{
	content: '';
	position: absolute;
	inset: 0;
	background-color: #F9D2B3;
}
.ecv2_banner_content::after{
	content: '';
	position: absolute;
	inset: 0;
	background-color: #F9D2B3;
}
.ecv2_banner_right_img{
	flex: 0 0 33.33%;
	max-width: 33.33%;
}
.ecv2_banner_right_img img{
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ecv2_banner_wrapper .slick-dots{
	bottom: 145px;
}
.ecv2_banner_wrapper .slick-dots li{
	width: 33px;
    height: 5px;
	margin: 0 6px;
}
.ecv2_banner_wrapper .slick-dots li button:before{
	font-size: 35px;
	width: 33px;
    height: 5px;
	content: '';
	background: var(--primary-color);
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ecv2_banner_wrapper .slick-dots li button{
	padding: 0;
	width: 33px;
    height: 5px;
}
.ecv2_banner_wrapper .slick-dots li.slick-active button:before{
	opacity: 1;
}
.ecv2_banner_wrapper .slick-dots li.slick-active button:after{
	border: 1px solid var(--primary-color);
	width: 39px;
    height: 11px;
	position: absolute;
	inset: -3px;
	content: '';
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ecv2_banner_content h5{
	font-size: 12px;
	line-height: 26px;
	color: var(--black-color);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-family: var(--font-worksans);
}
.ecv2_banner_content h2{
	font-size: 44px;
	line-height: 55px;
	color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 400;
	margin-top: 10px;
    margin-bottom: 20px;
}
.ecv2_banner_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--black-color);
	font-weight: 400;
	font-family: var(--font-worksans);
	max-width: 80%;
	margin-bottom: 20px;
}
.ecv2_banner_content .ecv2_primary_btn{
	margin-top: 20px;
	min-width: 250px;
}
.ecv2_banner_wrapper .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.ecv2_banner_product_detail{
	background-color: var(--white-color);
	padding: 40px 60px;
	padding-bottom: 25px;
	box-shadow: 0 0 8px #00000024;
}
.ecv2_banner_product_detail_card{
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 15px;
}
.ecv2_banner_product_icon{
	width: 50px;
	height: 50px;
	flex: 0 0 50px;
	background-color: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}
.ecv2_banner_product_icon .banner_icon{
	color: var(--primary-color);
	font-size: 20px;
}
.ecv2_banner_product_detail_card:hover .ecv2_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);
	}
}
.ecv2_banner_product_cont p{
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--text-color);
}
.ecv2_banner_product_cont h5{
	font-size: 24px;
	line-height: 30px;
	text-transform: capitalize;
	color: var(--primary-color);
	font-family: var(--font-worksans);
}
@keyframes slideUpFadeIn {
	0% {
	  opacity: 0;
	  transform: translateY(40px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .ecv2_banner_content h5,
  .ecv2_banner_content h2,
  .ecv2_banner_content p,
  .ecv2_banner_content a {
	opacity: 0;
  }
  
  .ecv2_banner_content.animated h5 {
	animation: slideUpFadeIn 0.6s 0.1s forwards;
  }
  .ecv2_banner_content.animated h2 {
	animation: slideUpFadeIn 0.6s 0.3s forwards;
  }
  .ecv2_banner_content.animated p {
	animation: slideUpFadeIn 0.6s 0.5s forwards;
  }
  .ecv2_banner_content.animated a {
	animation: slideUpFadeIn 0.6s 0.7s forwards;
  }
  
  @keyframes coverFromLeft {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(0); }
  }
  @keyframes coverFromRight {
	0% { transform: translateX(100%); }
	100% { transform: translateX(0); }
  }
  
  .ecv2_banner_content.cover-animate::before {
	animation: coverFromLeft 1s 0s forwards;
	z-index: 2;
  }
  .ecv2_banner_content.cover-animate::after {
	animation: coverFromRight 1s 0s forwards;
	z-index: 2;
  }
  .ecv2_banner_content::before,
  .ecv2_banner_content::after {
	z-index: 2;
	pointer-events: none;
  }
  .ecv2_banner_content.animated::before,
  .ecv2_banner_content.animated::after {
	animation: none !important;
	opacity: 0;
	z-index: 0;
  }
/*--------- Hero Banner css End -------*/
/*--------- About css Start -------*/
.ecv2_about_wrapper{
	padding: 100px 0;
}
.ecv2_heading_wrapper{
	text-align: center;
}
  .ecv2_heading_wrapper h4 {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: var(--font-worksans);
  }
  .ecv2_heading_wrapper h3 {
	font-size: 40px;
	line-height: 50px;
	font-weight: 600;
	color: var(--black-color);
	margin-bottom: 8px;
	text-transform: capitalize;
	position: relative;
	letter-spacing: 3px;
  }
  .ecv2_heading_wrapper p {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
	text-transform: capitalize;
	margin-top: 20px;
  }
.ecv2_about_feature{
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}
.ecv2_about_icon{
	width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: #eaebf1;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	position: relative;
	transition: var(--transition);
}
.ecv2_about_icon:after{
	content: '';
	position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    opacity: 0;
	visibility: hidden;
    padding: 10px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	transition: var(--transition);
}
.ecv2_about_feature:hover .ecv2_about_icon:after{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
	visibility: visible;
	transition: var(--transition);
}
.ecv2_about_icon .about_icon{
	color: #8b9cff;
	font-size: 24px;
	position: relative;
	z-index: 1;
	transition: var(--transition);
}
.ecv2_about_text h5{
	font-size: 20px;
    line-height: 28px;
    color: var(--black-color);
    text-transform: capitalize;
	font-weight: 600;
	letter-spacing: 1px;
}
.ecv2_about_text p{
	font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    text-transform: capitalize;
	margin-top: 10px;
}
.ecv2_about_feature_image img{
	width: 100%;
}
.ecv2_about_content_main{
	margin-top: 40px;
}
.abt_right{
	text-align: right;
    align-items: flex-end;
}
.ecv2_about_col_left:nth-child(2) .ecv2_about_icon{
	background-color: #fff1d9;
}
.ecv2_about_col_left:nth-child(2) .ecv2_about_icon .about_icon{
	color:  #f7b540;
}
.ecv2_about_col_left:nth-child(2):hover .ecv2_about_icon:after{
	background-color: #f7b540;
}
.ecv2_about_col_left:first-child:hover .ecv2_about_icon:after{
	background-color: #8b9cff;
}
.ecv2_about_col_left:nth-child(3) .ecv2_about_icon{
	background-color: #fdf1f0;
}
.ecv2_about_col_left:nth-child(3) .ecv2_about_icon .about_icon{
	color:  #e38f87;
}
.ecv2_about_col_left:nth-child(3):hover .ecv2_about_icon:after{
	background-color: #e38f87;
}
.ecv2_about_col_left:nth-child(4) .ecv2_about_icon{
	background-color: #fff1d9;
}
.ecv2_about_col_left:nth-child(4) .ecv2_about_icon .about_icon{
	color:  #f7b540;
}
.ecv2_about_col_left:nth-child(4):hover .ecv2_about_icon:after{
	background-color: #f7b540;
}
.ecv2_about_col_right:first-child .ecv2_about_icon{
	background-color: #fdf1f0;
}
.ecv2_about_col_right:first-child .ecv2_about_icon .about_icon{
	color:  #e38f87;
}
.ecv2_about_col_right:first-child:hover .ecv2_about_icon:after{
	background-color: #e38f87;
}
.ecv2_about_col_right:nth-child(2) .ecv2_about_icon{
	background-color: #e3fee5;
}
.ecv2_about_col_right:nth-child(2) .ecv2_about_icon .about_icon{
	color:  #6ae373;
}
.ecv2_about_col_right:nth-child(2):hover .ecv2_about_icon:after{
	background-color: #6ae373;
}
.ecv2_about_col_right:nth-child(3) .ecv2_about_icon{
	background-color: #fff0df;
}
.ecv2_about_col_right:nth-child(3) .ecv2_about_icon .about_icon{
	color:  #f2a349;
}
.ecv2_about_col_right:nth-child(3):hover .ecv2_about_icon:after{
	background-color: #f2a349;
}
.ecv2_about_col_right:nth-child(4) .ecv2_about_icon{
	background-color: #e3fee5;
}
.ecv2_about_col_right:nth-child(4) .ecv2_about_icon .about_icon{
	color:  #6ae373;
}
.ecv2_about_col_right:nth-child(4):hover .ecv2_about_icon:after{
	background-color: #6ae373;
}
.ecv2_about_feature:hover .ecv2_about_icon .about_icon{
	color: var(--white-color);
	transition: var(--transition);
}
/*--------- About css End -------*/
/*--------- Product css Start -------*/
.ecv2_product_wrapper #row-edit{
	margin: 0 -15px;
}
.ecv2_product_wrapper #row-edit .col{
	padding: 0 15px;
}
.ecv2_product_wrapper .ecv2_heading_wrapper{
	padding-bottom: 30px;
}
.ecv2_product_box{
	border: 1px solid #ddd;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    box-shadow: 0 0 6px var(--background-color);
	margin-top: 30px;
	transition: var(--transition);
}
.ecv2_product_box:hover{
	border: 1px solid var(--primary-color);
	transition: var(--transition);
}
.ecv2_product_image{
	width: 100%;
	height: 350px;
	background: #eee;
	padding: 25px;
	-webkit-border-top-left-radius: 15px;
    -moz-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
    -moz-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
}
.ecv2_product_image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: var(--transition);
}
.ecv2_product_box:hover .ecv2_product_image img{
	transform: scale(1.1);
    transition: var(--transition);
}
.ecv2_product_content{
	padding: 30px 20px;
}
.ecv2_product_content_top{
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
}
.ecv2_product_content_top .ecv2_client_star_wrap{
	margin-bottom: 0;
}
.ecv2_product_content_top h5{
	font-size: 16px;
	color: var(--primary-color);
	font-family: var(--font-worksans);
	font-weight: 400;
}
.ecv2_product_content_bot .product_heading{
	color: var(--black-color);
	font-size: 24px;
	line-height: 32px;
	font-family: var(--font-belleza);
	display: block;
	margin-top: 10px;
}
.ecv2_product_content_bot .ecv2_primary_btn{
	margin-top: 25px;
}
.ecv2_product_price{
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
	margin-top: 15px;
}
.ecv2_product_price h5{
	font-family: var(--font-worksans);
	font-size: 20px;
	color: var(--black-color);
	line-height: 25px;
}
.ecv2_product_price p{
	font-size: 14px;
	color: var(--text-color);
	line-height: 25px;
}
/*--------- Product css End -------*/
/*--------- testimonail css Start -------*/
.ecv2_testimonail_wrapper{
	padding: 120px 0;
	background-image: url('../images/testimonial-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.ecv2_testimonail_wrapper::after{
	content: '';
	position: absolute;
	inset: 0;
	background-color: #F4F2ED;
	opacity: 0.8;
}
.ecv2_testimonail_inner{
	display: flex;
	padding-left: 80px;
}
.ecv2_testimonail_wrapper .ecv2_heading_wrapper{
	flex: 0 0 500px;
	max-width: 500px;
	position: relative;
	z-index: 1;
	padding-right: 50px;
	text-align: left;
}
.ecv2_testimonail_wrapper .slick-slider{
	z-index: 1;
	flex: calc(100% - 500px);
	max-width: calc(100% - 500px);
}
.ecv2_testimonail_slide_content{
	display: flex;
	align-items: center;
	gap: 24px;
	flex-direction: column;
	padding: 30px;
	-webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
	background: var(--white-color);
	text-align: left;
	position: relative;
	z-index: 1;
}
.ecv2_client_img_wrapper{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}
.ecv2_client_img{
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.ecv2_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;
}
.ecv2_client_des p{
	font-size: 16px;
    line-height: 26px;
    color: var(--black-color);
    font-weight: 400;
	font-style: italic;
}
.ecv2_client_des h5{
	font-size: 16px;
    line-height: 26px;
    color: var(--primary-color);
    font-weight: 700;
}
.ecv2_client_des h6{
	font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 400;
	font-style: italic;
}
.ecv2_testimonail_wrapper .slick-slider .col{
	padding: 15px;
}
.ecv2_testimonail_wrapper .slick-prev:before, .ecv2_testimonail_wrapper .slick-next:before{
	color: var(--white-color);
	opacity: 1;
	font-size: 21px;
}
.ecv2_testimonail_wrapper .slick-prev{
		left: -499px;
		top: auto;
		bottom: 20px;
		width: 45px;
		background-color: var(--primary-color);
		height: 45px;
		border-radius: 100%;
}
.ecv2_testimonail_wrapper .slick-next{
	left: -440px;
	top: auto;
    bottom: 20px;
	width: 45px;
    background-color: var(--primary-color);
    height: 45px;
    border-radius: 100%;
}
.ecv2_testimonail_wrapper .slick-disabled{
	opacity: 0.6;
}
.ecv2_client_star{
	position: relative;
}
.ecv2_client_star_wrap{
	display: flex;
	gap: 5px;
	align-items: center;
	margin-bottom: 20px;
}
.ecv2_client_star .star_icon{
	color: #fac12e;
}
/*--------- testimonail css End -------*/
/*--------- best deal css Start -------*/
.ecv2_best_deal_wrapper{
	padding: 100px 0;
}
.ecv2_best_deal_inner{
	background-color: var(--background-color);
	padding: 45px 60px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.ecv2_best_deal_cont h3{
	font-size: 28px;
    line-height: 35px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 8px;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 3px;
}
.ecv2_best_deal_cont p{
	font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    text-transform: capitalize;
    margin-top: 15px;
	max-width: 85%;
}
.ecv2_timer_wrapper{
	display: flex;
	align-items: center;
	gap: 35px;
	margin-top: 20px;
}
.ecv2_timer{
	text-align: center;
	position: relative;
}
.ecv2_timer::after{
	content: ':';
    position: absolute;
    right: -23px;
    top: 50%;
    transform: translateY(-26px);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 34px;
}
.ecv2_timer .days,
.ecv2_timer .hours,
.ecv2_timer .minutes,
.ecv2_timer .seconds{
	font-size: 34px;
	line-height: 45px;
	font-weight: 600;
	color: var(--primary-color);
}
.ecv2_timer .smalltext{
	font-weight: 400;
	color: var(--text-color);
	font-size: 13px;
}
.ecv2_timer:last-child::after{
	display: none;
}
.ecv2_best_deal_cont .ecv2_primary_btn{
	margin-top: 30px;
	margin-right: 10px;
}
.ecv2_best_deal_image img{
	width: 100%;
	-webkit-animation: movebounce 3.9s linear infinite;
    animation: movebounce 3.9s linear infinite;
}
/*--------- best deal css End -------*/
/*--------- Blog css Start -------*/
.ecv2_blog_wrapper{
	padding: 100px 0;
}
.ecv2_blog_wrapper .ecv2_heading_wrapper{
	margin-bottom: 30px;
}
.ecv2_blog_card_wrapper{
	margin-top: 30px;
	border: 1px solid #ddd;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    box-shadow: 0 0 6px var(--background-color);
}
.ecv2_blog_img{
	width: 100%;
	height: 250px;
	overflow: hidden;
	-webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.ecv2_blog_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	transition: var(--transition);
}
.ecv2_blog_card_wrapper:hover .ecv2_blog_img img{
	transform: scale(1.1);
	transition: var(--transition);
}
.ecv2_blog_img_cont{
	padding: 30px 25px;
}
.ecv2_blog_img_cont h5{
	font-size: 14px;
	line-height: 26px;
	color: var(--black-color);
	font-family: var(--font-worksans);
	text-transform: uppercase;
}
.ecv2_blog_img_cont .blog_heading{
	font-size: 30px;
	line-height: 34px;
	color: var(--black-color);
	font-family: var(--font-belleza);
	display: block;
	margin: 10px 0;
	transition: var(--transition);
}
.ecv2_blog_card_wrapper:hover .blog_heading{
	color: var(--primary-color);
	transition: var(--transition);
}
.ecv2_blog_img_cont p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}
.ecv2_blog_img_cont .ecv2_primary_btn{
	margin-top: 25px;
}
/*--------- Blog css End -------*/
/*--------- Footer css Start -------*/
.ecv2_footer_wrapper{
	padding-top: 80px;
	background: url('../images/footer-bg.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.ecv2_footer_wrapper::after{
	content: '';
    position: absolute;
    inset: 0;
    background-color: #F4F2ED;
    opacity: 0.8;
}
.ecv2_footer_logo img{
	max-width: 170px;
}
.ecv2_footer_wrapper #row-edit{
	position: relative;
	z-index: 1;
}
.ecv2_footer_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.ecv2_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)
}
.ecv2_footer_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.ecv2_footer_center h3{
	font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: var(--primary-color);
}
.ecv2_footer_links{
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 25px;
	align-items: flex-start;
}
.ecv2_footer_links a{
	color: var(--black-color);
	position: relative;
}
.ecv2_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;
}
.ecv2_footer_links a:hover:after{
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.ecv2_footer_links a:hover{
	color: var(--primary-color);
}
.ecv2_footer_contact_icon{
	position: relative;
}
.ecv2_footer_contact{
	display: flex;
	align-items: center;
	gap: 15px;
}
.ecv2_footer_contact .contact_footer_icon{
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	background-color: var(--white-color);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.09);
}
.ecv2_footer_contact p{
	word-break: break-word;
	color: var(--black-color);
}
.ecv2_footer_contact_wrap{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}
.ecv2_botttom_footer{
	border-top: 1px solid #c2c2c2;
	text-align: center;
	margin-top: 60px;
	padding: 20px 0;
	position: relative;
	z-index: 1;
}
.ecv2_botttom_footer p{
	font-size: 14px;
	color: var(--black-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 (min-width: 1400px) {
    .container{
        max-width: 1320px;
    }
}
@media (max-width: 1400px) {
    .container{
        max-width: 100%;
		padding: 0 30px;
    }
	.ecv2_banner_left_img {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.ecv2_banner_content{
		flex: 0 0 50%;
		max-width: 50%;
	}
	.ecv2_banner_right_img{
		flex: 0 0 25%;
		max-width: 25%;
	}
	.ecv2_banner_product_detail{
		padding: 40px 15px;
		padding-bottom: 25px;
	}
	.ecv2_banner_product_cont h5 {
		font-size: 18px;
		line-height: 26px;
	}
	.ecv2_testimonail_inner {
		padding-left: 30px;
	}
}
@media (max-width: 1199px){
	.ecv2_header_wrapper{
		padding: 0;
	}
	.ecv2_banner_content h2 {
		font-size: 34px;
		line-height: 40px;
	}
	.ecv2_banner_content{
		padding: 20px;
	}
	.ecv2_ingredients_box.ingnt2 {
		align-items: flex-end;
		padding-left: 0;
	}
	.ecv2_ingredients_cont h3 {
		font-size: 34px;
		line-height: 40px;
	}
	.ecv2_heading_wrapper h3 {
		font-size: 34px;
		line-height: 40px;
	}
	.ecv2_blog_img_cont .blog_heading {
		font-size: 25px;
		line-height: 34px;
	}
}
@media (max-width: 991px){
	.ecv2_header_wrapper {
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
	}
	.el_header_mob_toggle_btn{
		display: block;
	}
	.ecv2_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 .ecv2_header_nav_wrapper{
		left: 0;
	}
	.ecv2_nav_wrapper ul{
		display: block;
		padding: 35px 0px;
	}
	.ecv2_nav_wrapper ul li a{
        width: 100%;
        display: inline-block;
        padding: 10px 15px;
        border-bottom: 1px solid #E4E4E4;
		font-weight: 500;
	}
	.ecv2_nav_wrapper ul li a.active{
		background: var(--primary-color);
		color: var(--white-color);
	}
	.ecv2_nav_wrapper ul li a.active:after, .ecv2_nav_wrapper ul li:hover a:after{
		display: none;
	}
	#close-sidebar{
		display: block;
	}
	.ecv2_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);
	}
	.ecv2_header_inner {
		padding: 20px 0;
	}
	.ecv2_banner_slide {
		height: 500px;
	}
	.ecv2_banner_wrapper .slick-dots {
		bottom: 20px;
	}
	.ecv2_banner_content .ecv2_primary_btn {
		margin-top: 20px;
	}
	.ecv2_ingredients_wrapper {
		padding: 60px 0;
	}
	.ecv2_ingredients_cont h3 {
		font-size: 28px;
		line-height: 35px;
	}
	.ecv2_ingredients_cont {
		padding-left: 50px;
	}
	.ecv2_before_after_wrapper, .ecv2_about_wrapper, .ecv2_blog_wrapper{
		padding: 60px 0;
	}
	.ecv2_heading_wrapper h3 {
        font-size: 28px;
        line-height: 30px;
    }
	.ecv2_before_after_slider{
		height: 400px;
	}
	.ecv2_best_deal_wrapper {
		padding-bottom: 60px;
	}
	.ecv2_testimonail_inner{
		flex-direction: column;
		padding: 0 15px;
	}
	.ecv2_testimonail_wrapper .ecv2_heading_wrapper {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
		margin-bottom: 30px;
		padding: 0 15px;
	}
	.ecv2_testimonail_wrapper .slick-slider {
		z-index: 1;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.ecv2_testimonail_wrapper .slick-prev {
		left: -60px;
		right: 0;
		margin: 0px auto;
		bottom: -85px;
	}
	.ecv2_testimonail_wrapper .slick-next {
		left: 0;
		right: -60px;
		margin: 0px auto;
		bottom: -85px;
	}
	.ecv2_testimonail_wrapper{
		padding-top: 60px;
		padding-bottom: 120px;
	}
	.ecv2_blog_card_wrapper {
		margin-top: 50px;
	}
	.ecv2_blog_wrapper .ecv2_heading_wrapper {
		margin-bottom: 0;
	}
	.ecv2_footer_center, .ecv2_footer_left{
		margin-bottom: 30px;
	}
	.ecv2_botttom_footer{
		margin-top: 30px;
	}
}
@media (max-width: 767px){
	.container{
        max-width: 100%;
		padding: 0 15px;
    }
	.ecv2_banner_left_img {
        flex: 0 0 50%;
        max-width: 50%;
    }
	.ecv2_banner_right_img {
        flex: 0 0 50%;
        max-width: 50%;
    }
	.ecv2_banner_slide{
		position: relative;
	}
	.ecv2_banner_content{
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		top: 0;
        bottom: 0;
	}
	.ecv2_banner_content {
        flex: 0 0 80%;
        max-width: 80%;
    }
	.ecv2_banner_content p{
		max-width: 100%;
	}
	.ecv2_ingredients_img{
		max-width: 400px;
		margin: 0px auto;
	}
	.ecv2_ingredients_cont {
        padding-left: 0;
        margin-top: 60px;
    }
	.ingnt2::before, .ingnt2::after{
		display: none;
	}
	.ecv2_ingredients_box_wrapper{
		display: flex;
		gap: 30px;
		justify-content: center;
	}
	.ecv2_ingredients_cont h3 {
        text-align: center;
		margin-bottom: 40px;
    }
	.ecv2_ingredients_box.ingnt2, .ecv2_ingredients_box {
        align-items: center;
    }
	.ecv2_before_after_slider {
        height: 300px;
		margin: 30px auto 0 auto;
    }
	.ecv2_heading_wrapper h3 {
        font-size: 22px;
        line-height: 30px;
    }
	.ecv2_heading_wrapper h4 {
		font-size: 14px;
		line-height: 23px;
	}
	.abt_right {
		text-align: left;
		align-items: flex-start;
	}
	.ecv2_about_feature_image{
		max-width: 400px;
		margin: 0px auto;
	}
	.ecv2_best_deal_image{
		display: none;
	}
	.ecv2_best_deal_inner {
		padding: 40px 15px;
		text-align: center;
	}
	.ecv2_timer_wrapper{
		justify-content: center;
	}
	.ecv2_best_deal_cont h3 {
		font-size: 22px;
		line-height: 30px;
	}
	.ecv2_best_deal_cont p{
		max-width: 100%;
	}	
	.ecv2_testimonail_inner{
		padding: 0;
	}
	.ecv2_footer_wrapper {
		padding-top: 40px;
	}
	.ecv2_botttom_footer {
        margin-top: 15px;
    }
	.ecv2_product_content_bot .product_heading {
		font-size: 20px;
		line-height: 28px;
	}
}
@media (max-width: 580px){
	.ecv2_top_header_wrapper p {
		font-size: 12px;
		line-height: 15px;
	}
	.ecv2_banner_content h2 {
        font-size: 28px;
        line-height: 35px;
    }
	.ecv2_ingredients_icon{
		width: 80px;
		height: 80px;
	}
	.ecv2_ingredients_icon img {
		width: 45px;
	}
	.ingnt2 .ecv2_ingredients_icon img {
		width: 35px;
	}
	.ecv2_ingredients_box_wrapper{
		gap: 10px;
	}
	.ecv2_ingredients_cont h3 {
        font-size: 22px;
        line-height: 26px;
    }
	.ecv2_before_after_slider {
        height: 200px;
    }
	.ecv2_about_content_main {
		margin-top: 20px;
	}
	.ecv2_timer .days, .ecv2_timer .hours, .ecv2_timer .minutes, .ecv2_timer .seconds {
		font-size: 22px;
		line-height: 30px;
	}
	.ecv2_timer_wrapper{
		gap: 25px;
	}
	.ecv2_timer::after{
		font-size: 22px;
		right: -17px;
	}
	.ecv2_blog_img_cont .blog_heading {
        font-size: 22px;
        line-height: 28px;
    }
	.ecv2_product_content_bot .ecv2_primary_btn{
		min-width: 135px;
	}
	.ecv2_blog_img_cont .ecv2_primary_btn{
		min-width: 155px;
	}
	.ecv2_blog_img{
		height: auto;
	}
}
/*--------- Media css end -------*/
/*--------- Edit mode css start -------*/
.edit-mode .ecv2_top_header_wrapper p{
	display: inline-block;
}
.edit-mode .ecv2_banner_content::before,
.edit-mode .ecv2_banner_content::after,
.edit-mode .ecv2_primary_btn::after,
.edit-mode .ecv2_primary_btn::before,
.edit-mode .ecv2_banner_wrapper .slick-slider .row-edit-btn,
.edit-mode .slider-handle,
.edit-mode .ecv2_about_content_main .row-edit-btn,
.edit-mode .ecv2_testimonail_inner .row-edit-btn{
	display: none !important;
}
.edit-mode .ecv2_banner_content h5, .edit-mode .ecv2_banner_content h2, .edit-mode .ecv2_banner_content p, .edit-mode .ecv2_banner_content a{
	opacity: 1;
}
.edit-mode .ecv2_banner_slide{
    margin-bottom: 30px;
}
.edit-mode .ecv2_banner_wrapper .slick-slider .column-toolbar{
	left: 0;
}
.edit-mode .ecv2_primary_btn{
	overflow: visible;
	letter-spacing: 0;
}
.edit-mode .ecv2_banner_wrapper .slick-slider .column-toolbar::after{
	content: 'Slide Item';
	white-space: nowrap;
}
.edit-mode .ecv2_banner_product_detail_card{
	margin-top: 30px;
}
.edit-mode .ecv2_banner_product_cont h5{
	margin-top: 20px;
}
.edit-mode .ecv2_banner_product_detail_card:hover .ecv2_banner_product_icon {
    animation-name: wobble-horizontal;
    animation-duration: 0s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 0;
}
.edit-mode .ecv2_banner_product_icon .icon-edit-btn-wrapper{
	left: 0;
    top: -32px;
}
.edit-mode .ecv2_before_after_slider img{
	position: unset;
}
.edit-mode .ecv2_before_after_slider{
	height: auto;
	overflow: visible;
}
.edit-mode .ecv2_before_after_slider .after-img {
    clip-path: unset;
}
.edit-mode .ecv2_before_after_slider img{
	pointer-events: auto;
}
.edit-mode .ecv2_before_after_slider::before {
    top: calc(50% - 70px);
}
.edit-mode .ecv2_before_after_slider::after {
	top: calc(50% - -50px);
}
.edit-mode .ecv2_before_img{
	margin-bottom: 50px;
}
.edit-mode  .ecv2_testimonail_slide_content{
	margin-bottom: 50px;
	padding-top: 60px;
}
.edit-mode .ecv2_about_text h5{
	margin: 25px 0;
}
.edit-mode .ecv2_about_icon .icon-edit-btn-wrapper,
.edit-mode .ecv2_client_star .icon-edit-btn-wrapper{
	left: 0;
    right: 0;
    top: -30px;
    margin: 0 auto;
}
.edit-mode .ecv2_about_feature{
	margin-bottom: 120px;
}
.edit-mode .ecv2_about_content_main #row-edit{
	padding: 15px 15px 15px 15px;
	border: 0;
}
.edit-mode .ecv2_about_content_main .column-toolbar{
	top: -70px;
}
.edit-mode .ecv2_client_star_wrap{
	column-gap: 60px;
}
.edit-mode .ecv2_client_des p{
	margin: 40px 0px;
}
.edit-mode .ecv2_client_des h6{
	margin-top: 25px;
}
.edit-mode .ecv2_blog_img{
	overflow: visible;
}
.edit-mode .ecv2_blog_card_wrapper:hover .ecv2_blog_img img{
	transform: scale(1);
}
.edit-mode .ecv2_blog_card_wrapper {
    margin-top: 0;
    margin-bottom: 50px;
}
.edit-mode .ecv2_blog_img_cont .ecv2_primary_btn {
    margin-right: 10px;
}
.edit-mode .ecv2_footer_center,
.edit-mode .ecv2_footer_left{
	padding-top: 40px;
}

.editable-section .ecv2_banner_content::before,
.editable-section .ecv2_banner_content::after, 
.color-switcher, .edit-mode .ecv2_client_star_wrap .icon-edit-btn-wrapper::after,
.edit-mode .product_heading .anchor-button-wrapper .anchor-duplicate-btn, 
.edit-mode .ecv2_product_content_bot .ecv2_primary_btn .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .blog_heading .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .ecv2_blog_img_cont .ecv2_primary_btn .anchor-button-wrapper .anchor-duplicate-btn{
	display: none !important;
}
.editable-section .ecv2_banner_content h5, .editable-section .ecv2_banner_content h2, .editable-section .ecv2_banner_content p, .editable-section .ecv2_banner_content a{
	opacity: 1;
}
.edit-mode .ecv2_product_wrapper{
	padding-top: 80px;
}
.edit-mode .ecv2_product_box:hover .ecv2_product_image img {
    transform: scale(1);
}
.edit-mode .ecv2_product_image{
	padding: 0;
}
.edit-mode .ecv2_product_wrapper .ecv2_client_star_wrap{
	column-gap: 20px;
}
.edit-mode .ecv2_product_wrapper #row-edit .col{
	margin-top: 40px;
}
.edit-mode .ecv2_product_wrapper .column-toolbar{
	top: 0;
}
.edit-mode .ecv2_footer_links a{
	margin-top: 20px;
}
.edit-mode .ecv2_footer_contact_icon .icon-edit-btn-wrapper{
	left: 7px;
    top: -31px;
}
.edit-mode .ecv2_footer_contact{
	margin-top: 45px;
}
/*--------- Edit mode css end -------*/