@font-face {
	font-family: 'Gotham-Medium';
	src: url('../font/Gotham-Medium.otf') format('truetype');
}
@font-face {
	font-family: 'NewSpirit-Medium';
	src: url('../font/new-spirit-medium.otf') format('truetype');
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
html, body{
	overflow-x: hidden;
	width: 100%;
}
.animated{
	transition: 0.5s all linear;
}
.animated_left_slide:not(.animation_ended){
	transform: translate(-100%, 0);
	opacity: 0;
}
.animated_right_slide:not(.animation_ended){
	transform: translate(100%, 0);
	opacity: 0;
}
.animated_zoom_in:not(.animation_ended){
	transform: scale(0.3);
	opacity: 0;
}
.animated_fade_in:not(.animation_ended){
	opacity: 0;
}
.wholesale_form_btn{
    width: 100%;
    max-width: 200px;
    position: relative;
}
.wholesale_form_btn.loading .button_icon_spinner{
    display: flex;
}
.button_icon_spinner {
    display: none;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.wholesale_form_btn.loading .button_icon_spinner svg {
    webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
.button_icon_spinner svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.wholesale_form_btn input{
    width: 100%;
}
.wholesale_form_btn.loading input{
    pointer-events: none;
    color: #527267!important;
    background-color: #527267!important;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*popup*/
.popup_overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
	background-color: #ffffff5c;
	backdrop-filter: blur(3px);
}
.popup_overlay .popup {
	background-image: url("../img/popup-bg.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
	padding: 135px 25px 25px;
	max-width: 750px;
	width: 100%;
	min-height: 680px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.popup_overlay .popup_heading{
	text-align: left;
	width: 50%;
	font-size: 50px;
	font-weight: 500;
	line-height: 65px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
    margin:0px 0px 10px auto;
}
.popup_overlay .popup_dec{
	text-align: left;
	font-size: 23px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: white;
    font-family: 'NewSpirit-Medium', sans-serif;
    margin:0px 0px 0px auto;
    width: 50%;
}

.popup_overlay .popup_dec a{
	color: #27483d;
	text-decoration: none;
	display: block;
}
.popup_overlay .popup_dec a:hover{
	text-decoration: underline;
}
.popup_overlay.popup_close {
	display: none !important;
}
.popup_overlay .close_btn{
	position: absolute;
    top: 22%;
    right: 17px;
    background-color: transparent;
    border: none;
    color: white;
    transition: .2s;
    cursor: pointer;
}
.popup_overlay .close_btn svg{
	width: 38px;
	height: 38px;
}
.popup_overlay .close_btn:hover{
	color: #a80102;
}
/*globel css*/
.container{
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	padding: 0px 55px;
}
.special_dec{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
	color: #527267;
}
.content_heading{
	color: #527267 !important;
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.content_dec{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
	color: black;
	padding-bottom: 15px;
}
/*site header*/
.site_header{
	padding: 15px 0px;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.site_header .main{
	display: flex;
	align-items: center	;
	justify-content: space-between;
}
.site_header .nav_list_wrapper{
	width: 40%;
}
.site_header .nav_list{
	list-style: none;
	display: flex;
	justify-content: left;
	align-items: center;
	column-gap: 20px;
	max-height: fit-content;
}
.site_header .right_nav{
	justify-content: right !important;
}
.site_header .nav_list .nav_item .menu{
	color: white;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Gotham-Medium', sans-serif;
	line-height: 26px;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
}
.site_header .site_logo{
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.site_header .site_logo .logo img{
	width: 75px;
}
.mobile_menu_open{
	display: none;
}
/*header active*/
.header_active{
	background-color: white;
	position: fixed;
	transition: .3s;
}
.header_active .nav_list .nav_item .menu{
	color: #527267;
	position: relative;
}
.mobile_menu_open svg{
	color: white;
}
.mobile_menu_wrapper{
	width: 100%;
	overflow: hidden;
}
.overlay{
	position: fixed;
	background-color: #000000a1;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	right: 0;
	transform: translateX(-100%);
	transition: .4s;
}
.overlay_active{
	transform: translateX(-0%);
	transition: .4s;
}
.mobile_menu_wrapper{
	display: none;
}
/*header hover affect*/
.about_us_page .menu.about_us_item:after,
.bolg_page .menu.bolg_item:after,
.our_mission_page .menu.our_mission_item:after,
.wholesale_page .menu.wholesale_item:after,
.products_page .menu.products_item:after,
.wellness_impact_page .menu.wellness_impact_item:after,
.faq_page .menu.faq_item:after,
.contact_page .menu.contact_item:after{
	transform: scaleX(1) !important;
	transform-origin: left !important;
}
.header_active .nav_list .nav_item .menu::after ,.site_header .nav_list .nav_item .menu::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background-color: white;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
.header_active .nav_list .nav_item .menu::after{
	background-color: #527267 !important;
}
.site_header .nav_list .nav_item .menu:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.site_header .nav_list .nav_item .menu:not(:hover)::after {
	transform: scaleX(0);
	transform-origin: right;
}
/*hero_sec*/
.hero_sec .owl-stage-outer .owl-item .slide{
	min-height: 800px !important;
	position: relative;
	background-size: cover;
	background-position: right top;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
.hero_sec .owl-stage-outer .owl-item .slide_1{
	background-image:url("../img/hero-slide-bg-1.png");
}
.hero_sec .owl-stage-outer .owl-item .slide_3{
	background-image:url("../img/hero-slide-bg-3.png");
}
.hero_sec .owl-stage-outer .owl-item .slide_2 .slide_video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero_sec .owl-stage-outer .owl-item .slide .slide_content{
	width: 50%;
}
.hero_sec .owl-stage-outer .owl-item .slide .slide_heading{
	font-size: 64px;
	font-weight: 500;
	line-height: 65px;
	margin-bottom: 30px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.hero_sec .owl-stage-outer .owl-item .slide .slide_dec{
	font-size: 20px;
	line-height: 35px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 65px;
}
.hero_sec .owl-stage-outer .owl-item .slide .slide_btn{
	color: white;
	text-decoration: none;
	border: 3px solid white;
	border-radius: 2000px;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	font-family: 'Gotham-Medium', sans-serif;
	padding: 15px 30px;
	transition: .4s;
	display: inline-block;
}
.hero_sec .owl-stage-outer .owl-item .slide .slide_btn:hover{
	color: #527267;
	background-color: white;
}
.slide_animated_wave{
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	transform: translateY(50%);
}
.slide_animated_wave svg{
	display: block;
}
.slide_animated_wave svg path{
	animation: large-wave-move 12s linear infinite;
	transition: linear;
}
@keyframes large-wave-move{
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}
.hero_sec .mobile_slide{
	display: none;
}
.hero_sec .owl-next ,.owl-prev{
	width: 50px;
	height: 50px;
	background-color: white !important;
	border-radius: 100px;
	display: flex;
	justify-content: center;
}
.hero_sec .owl-next span ,.owl-prev span{
	font-size: 39px;
	color: #527267;
}
.hero_sec .owl-prev{
	top: 81%;
	position: absolute;
	left: 43px;
}
.hero_sec .owl-next{
	top: 81%;
	position: absolute;
	right: 43px;
}
/*Testimonial sec*/
.testmonial_sec{
	padding: 50px 0 100px;
	background-image: url("../img/testmonial-sec-bg.png");
	background-size: cover;
	background-position: center;
}
.testmonial_sec .slider_item{
	padding: 7.5% 10% 5%;
	background-color:  #FFFDE9;
	border-radius: 2rem;
	display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.testmonial_sec .testmonial_dec{
	font-size: 20px;
	margin-bottom: 30px;
	color: #503629;
	text-align: center;
}
.testmonial_sec .testmonial_logo{
	width: 100px !important;
	height: 100px;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	border-radius: 100%;
}
/*about us sec*/
/*.about_us_sec{
	padding: 100px 0px;
	background-image: url("../img/about-us-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.about_us_sec .main{
	width: 50%;
}
.about_us_sec .sec_heading{
	font-size: 64px;
	font-weight: 500;
	line-height: 65px;
	margin-bottom: 30px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.about_us_sec .sec_dec{
	font-size: 17px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 15px;
}
.about_us_sec .sec_btn{
	color: white;
	text-decoration: none;
	border: 3px solid white;
	border-radius: 2000px;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	font-family: 'Gotham-Medium', sans-serif;
	padding: 15px 30px;
	transition: .4s;
	display: inline-block;
	margin-top: 15px;
}
.about_us_sec .sec_btn:hover{
	color: #527267;
	background-color: white;
}*/
/*Site footer*/
.site_footer{
	padding: 140px 0px 40px 0px;
	background-color: #527267;
	position: relative;
	margin-top: 53px;
	overflow: hidden;
}
.site_footer .main{
	display: flex;
}
.site_footer .logo_wrapper{
	width: 50%;
}
.site_footer .logo_wrapper .footer_logo{
	width: 75px;
}
.site_footer .logo_wrapper .footer_dec{
	padding-top: 28px;
	max-width: 327px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}
.site_footer .slide_animated_wave{
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	transform: translateY(-85px) rotate(180deg);
    height: fit-content;
}
.site_footer .slide_animated_wave svg path{
	animation: large-wave-move 12s linear infinite;
	transition: linear;
}
.site_footer .footer_menu{
	width: 50%;
}
.site_footer .footer_menu .menu_list{
	list-style: none;
}
.site_footer .footer_menu .menu_list .menu_item a{
	color: white;
	font-size: 16px;
	padding-bottom: 8px;
	font-family: 'NewSpirit-Medium', sans-serif;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
	display: inline-block;
}
.site_footer .bar_scan_wrapper{
	width: 25%;
}
.site_footer .footer_sub_head{
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 10px;
}
.site_footer .bar_scan_wrapper img{
	width: 170px;
}
.footer_label_wrapper{
	background-color: #527267;
}
.footer_label_wrapper .container{
	border-top: 1px solid white;
}
.footer_label_wrapper .footer_label{
	color: white;
	text-align: center;
	font-size: 14px;
	font-family: Gotham, sans-serif;
	font-weight: 400;
	line-height: 22px;
	padding: 15px 0px;
}
.footer_label_wrapper .footer_label .footer_label_link{
	text-decoration: none;
	color: white;
}
.products_hero_sec{
	padding:240px 0px 100px 0px;
}
.products_hero_sec .sec_main_div{
	width: 400px;

}
.products_hero_sec{
	background-image: url('../img/jucie-banner-product.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.products_hero_sec .sec_head{
	color: white;
	font-family: 'Playfair Display', 'sans-serif';
	font-size: 64px;
    font-weight: 600;
    line-height: 65px;
    margin-bottom: 30px;
}
.products_hero_sec .sec_main_div p{
	color: white;
	font-weight:400 ;
	font-size:16px;
	line-height: 24px;
	font-family: 'NewSpirit-Medium', sans-serif;

}
.products_sec{
	padding: 100px 0;
}
.products_sec .main_div{
	display: flex;
}
.products_sec .img_div{
	width: 50%;
	padding-left:15px;
	padding-right: 15px;

}
.products_sec .img_div img{
	width: 100%;
	border-radius:25px;
}
.products_sec .cotent_div{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left:20px;
	padding-right: 20px;	
}
.products_sec .sec_para{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.sec_para.big_font{
	font-size: 21px !important;
	line-height: 1.4 !important;
}
.products_sec .sec_head{
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.wellness_hero_sec{
	padding:240px 0px 100px 0px;
}
.wellness_hero_sec .sec_main_div{
	width: 500px;

}
.wellness_hero_sec{
	background-image: url('../img/jucie-banner-2.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.wellness_hero_sec .sec_head{
	color: white;
	font-family: 'Playfair Display', 'sans-serif';
	font-size: 64px;
    font-weight: 600;
    line-height: 65px;
    margin-bottom: 30px;
}
.wellness_hero_sec .sec_main_div p{
	color: white;
	font-weight:400 ;
	font-size:16px;
	line-height: 24px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.wellness_sec_two{
	padding: 100px 0px;
}
.wellness_sec_two .main_div{
	display: flex;
}
.wellness_sec_two .img_div{
	width: 50%;
	padding-left:15px;
	padding-right: 15px;
}
.wellness_sec_two .img_div img{
	width: 100%;
	border-radius: 25px;
}
.wellness_sec_two .cotent_div{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left:20px;
	padding-right: 20px;	
}
.wellness_sec_two .sec_para{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.wellness_sec_two .sec_head{
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.wellness_sec_three{
	padding: 100px 0px;
}
.wellness_sec_three .main_div{
	display: flex;
}
.wellness_sec_three .img_div{
	width: 50%;
	padding-left:15px;
	padding-right: 15px;

}
.wellness_sec_three .img_div img{
	width: 100%;
	border-radius: 25px;
}
.wellness_sec_three .cotent_div{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left:20px;
	padding-right: 20px;	
}
.wellness_sec_three .sec_para{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.wellness_sec_three .sec_head{
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.wellness_sec_four .sec_para{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
	.wellness_sec_four .sec_head{
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.wellness_sec_four{
	padding:100px 0px;
}
.wellness_sec_four .cotent_div{
	text-align: center;

}
.wellness_sec_five .sec_para{
	font-size: 17px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.wellness_sec_five{
	padding:100px 0px;
}
.wellness_sec_five .img_div img{
	width: 100%;
	border-radius: 25px;
}
.wellness_sec_five .sec_head{
	font-family: 'Playfair Display', 'sans-serif';
	padding: 16px 0px;
	font-size: 34px;
	font-weight: 600;
	line-height: 42px;
}
.wellness_sec_five .img_div_two{
	text-align: center;
	padding-top: 50px  0px;
}
.wellness_sec_five .img_div_two img{
	width: 100%;
	max-width: 600px;
}
.wellness_sec_five .img_div_two video{
	border-radius: 30px;
	object-fit: cover;
	height: 600px;
	object-position: center;
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.prebiotics_sec {
    padding: 100px 0px;
}
.prebiotics_sec .sec_head {
    font-size: 36px;
    font-weight: 500;
    line-height: 65px;
    margin-top: 32px;
    margin-bottom: 30px;
    color: #527267;
    font-family: "NewSpirit-Medium", sans-serif;
    text-align: left;
}
.prebiotics_sec .sec_parah {
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
    font-family: Star Juice, "NewSpirit-Medium", sans-serif;
    text-align: left;
}
.prebiotics_sec .sub_heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 30px;
    color: #527267;
    font-family: Star Juice, "NewSpirit-Medium", sans-serif;
    text-align: center;
}
.prebiotics_sec .prebiotics_row {
    display: flex;
    flex-wrap: wrap;
}
.prebiotics_sec .prebiotics_row .prebiotics_col {
    width: 33.333334%;
    padding: 20px;
}
.prebiotics_sec .prebiotics_card {
    text-align: center;
}

.prebiotics_sec .prebiotics_card img {
    width: 100%;
    max-width: 122px;
    display: block;
    margin: 0 auto 20px;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: transform;
}
.prebiotics_sec .prebiotics_card img :hover {
    transform: translate3d(0px, 0px, 0px) scale3d(, 1, 1) rotateX(0deg)
        rotateY(4deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.prebiotics_sec .prebiotics_row2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.prebiotics_col_2nd {
    width: 50%;
    padding: 20px;
    display: inline-block;
}
.prebiotics_col_2nd img {
    width: 100%;
    border-radius: 30px;
}
.prebiotics_sec .prebiotics_card .prebiotics_head {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: "NewSpirit-Medium", sans-serif;
}
.prebiotics_sec .prebiotics_card .prebiotics_dec {
    font-family: Gotham, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #527267;
}
/*Product section*/
.product_sec{
	padding: 100px 0px 100px 0px;
}
.product_sec .main{
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 20px;
}
.product_sec .product_wrapper{
	width: 26%;
}
.product_sec_2 .product_wrapper{
	width: 50%;
}
.product_sec_2 .product_wrapper a{
	display: block;
	margin: 0 auto;
	width: 80%;
}
.product_sec_2 .product_wrapper .product_wrapper{
	width: 33%;
}
.product_sec_2 .main .main{
	justify-content: center;
}
.product_sec .head .sec_heading{
	text-align: center;
	font-size: 64px;
	font-weight: 500;
	line-height: 50px;
	margin-bottom: 90px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.product_sec .video_frame{
	width: 100%;
    aspect-ratio: 1.777;
    border-radius: 10px;
}
.product_sec .product_wrapper a{
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.product_sec .product_wrapper .product_img{
	width: 100%;
	transition: .4s;
	max-width: 311px;
}
.product_sec .product_head{
	font-size: 31px;
	font-weight: 500;
	line-height: 30px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
	text-align: center;
}
.product_sec .product_wrapper a:hover .product_img {
	animation: product_bounce 1s cubic-bezier(0.47, 0.13, 0.03, 1.29) 1 forwards;
}
@keyframes product_bounce {
	0% {
		transform: rotateZ(0deg);
	}
	30% {
		transform: rotateZ(30deg); /* first big bounce */
	}
	60% {
		transform: rotateZ(0deg); /* returns to base */
	}
	80% {
		transform: rotateZ(20deg); /* smaller 2nd bounce */
	}
	100% {
		transform: rotateZ(0deg); /* settle back */
	}
}
/*image with text sec*/
.image_with_text_sec{
	padding: 100px 0px;
}
.image_with_text_sec .main{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.image_with_text_sec .img_wrapper{
	width: 45%;
	border-radius: 30px;
}
.product_info_sec .img_wrapper{
	/*background-color: #527267;*/
}
.image_with_text_sec .content_wrapper{
	width: 50%;
 }
.image_with_text_sec .img_wrapper img{
	width: 100%;
	border-radius: 30px;
	object-fit: cover;
}
.image_with_text_sec_2 .img_wrapper img{
	width: 49%;
    display: block;
    margin: 0 auto;
}
.about_us_sec .img_wrapper video{
	width: 100%;
	border-radius: 30px;
	object-fit: cover;
	height: 600px;
	object-position: center;
}
.image_with_text_sec .content_wrapper{
	padding-left: 50px;
}
.right_img_sec .content_wrapper{
	padding-left: 0px;
	padding-right: 50px;
}
.image_with_text_sec .content_wrapper .sec_heading{
	font-size: 50px;
	font-weight: 500;
	line-height: 50px;
	margin-bottom: 15px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.image_with_text_sec .content_wrapper .sec_sub_heading{
	font-size: 35px;
	font-weight: 500;
	line-height: 44px;
	margin-bottom: 15px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.image_with_text_sec .content_wrapper .sec_dec{
	font-size: 17px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: black;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 15px;
}
.image_with_text_sec .content_wrapper .sec_btn{
	background-color: #1998ff;
	text-align: center;
	color: white;
	text-decoration: none;
	border: 3px solid #1998ff;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	font-family: 'Gotham-Medium', sans-serif;
	padding: 10px 30px ;
	display: inline-block;
	min-width: 290px;
}
.image_with_text_sec .content_wrapper .sec_btn svg{
	width: 219px;
    height: 29px;
}
.image_with_text_sec .content_wrapper .sec_btn path {
	transition: .4s;
}
.image_with_text_sec .content_wrapper .sec_btn:hover path {
    fill: #1998ff;
}
.image_with_text_sec .content_wrapper .sec_btn:hover{
	background-color: white;
	color: #1998ff;
}
.image_with_text_sec .content_wrapper .sec_btn_2{
	background-color: #527267;
	color: white;
	text-decoration: none;
	border: 3px solid #527267;
	border-radius: 2000px;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	font-family: 'Gotham-Medium', sans-serif;
	padding: 15px 30px;
	transition: .4s;
	display: inline-block;
}
.image_with_text_sec .content_wrapper .sec_btn_2:hover{
	background-color: white;
	color: #527267;
}
/*contact form*/
.contact_form_sec{
	padding: 100px 0;
}
.contact_form_sec .contact_row{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.contact_form_sec .form_control,
.contact_form_sec .state_select{
	min-height: 48px;
    color: #5b776e;
    font-size: 16px;
    width: 100%;
    display: block;
    background-color: #fff;
    border: 1px solid #527267;
    padding: 10px 15px;
    border-radius: 10px;
}
.contact_form_sec .form_control:focus-visible,
.contact_form_sec .form_control.form_textarea:focus-visible,
.contact_form_sec .state_select:focus-visible{
	outline: 2px solid #527267;
    border-color: #527267;
}
.contact_form_sec .form_control.form_textarea{
	height: 120px;
}
.contact_form_sec .form_control::placeholder{
	color: #b1b1b1;
}
.contact_form_sec .contact_row .w_30{
	width: calc(30% - 10px);
}
.contact_form_sec .contact_row .w_70{
	width: calc(70% - 10px);
}
.contact_form_sec .contact_row .w_50{
	width: calc(50% - 10px);
}
.contact_form_sec .contact_row .w_60{
	width: calc(60% - 10px);
}
.contact_form_sec .contact_row .w_40{
	width: calc(40% - 10px);
}
.contact_form_sec .contact_row .w_100{
	width: 100%;
}
.contact_form_sec .submit_btn{
	display: block;
    background-color: #527267;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
    color: white;
    border: 2px solid #527267;
    font-family: 'NewSpirit-Medium', sans-serif;
    padding: 10px 28px;
}
.contact_form_sec .submit_btn:hover{
	color: #527267;
	background-color: white;
}
.contact_form_sec .form_label{
	color: #000000;
	font-size: 16px;
	font-family: Gotham, sans-serif;
	font-weight: 400;
	line-height: 22px;
	padding-bottom: 10px;
}
.contact_form_sec .radio_btn_wrapper{
	padding: 0px 5px;
}
.contact_form_sec .radio_btn_wrapper span{
	color: black;
	font-size: 14px;
	font-family: Gotham, sans-serif;
	font-weight: 400;
	line-height: 22px;
	padding: 0px 0px 10px 0px;
}
.contact_form_sec .content_dec{
	margin-bottom: 40px;
}
.contact_form_sec .content_heading{
	font-size: 50px;
}
.contact_form_sec .contact_box{
	padding: 43px 30px;
	background-color: #5b776e;
	border-radius: 10px;
	background-image: url(../img/form-bg.png);
	background-size: cover;
	background-position: center;
}
.contact_form_sec .contact_box .content_heading{
	color: white !important;
	padding:0;
}
.contact_form_sec .contact_box .submit_btn{
	color: #527267;
	background-color: white;
	border-color: white;
}
.contact_form_sec .contact_box .submit_btn:hover{
	color: white;
	background-color: #527267;
}
.nutrition_label {
	width: 100%;
    border: 1px solid #527267;
    padding: 16px;
    background: #fff;
    color: #527267;
    font-size: 14px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nutrition_label h2 {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	border-bottom: 2px solid #527267;
	padding-bottom: 5px;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.nutrition_label .serving {
	margin: 8px 0;
	font-weight: bold;
}
.nutrition_label .calories {
	font-size: 24px;
	font-weight: bold;
	margin: 10px 0 5px;
}
.nutrition_label table {
	width: 100%;
	border-collapse: collapse;
}
.nutrition_label table td {
	padding: 3px 0;
}
.nutrition_label .bold {
	font-weight: bold;
}
.nutrition_label .border_top {
	border-top: 2px solid #527267;
}
.nutrition_label .subtext {
	font-size: 12px;
	color: #333;
}
.nutrition_label .footnote {
	font-size: 11px;
	margin-top: 10px;
}
.nutrition_label .daily_value {
	text-align: right;
}
.single_products_hero_sec .video_wrapper {
	width: 100%;
	height: 90vh;
	overflow: hidden;
	position: relative;
}
.single_products_hero_sec .single_products_hero_sec_video {
	width: 101% !important;
	height: 100vw;
	object-fit: cover;
	object-position: top;
	border: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*Page Hero Section*/
.page_hero_sec{
	padding: 190px 0px 90px 0px;
	background-image: url(../img/jucie-banner-2.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	background-color: #5b776e;
	overflow: hidden;
}
.page_hero_sec .page_hero_sec_head{
	color: white;
	font-family: 'Playfair Display', 'sans-serif';
	font-size: 64px;
	font-weight: 600;
	line-height: 65px;
}
.prebiotics_sec .prebiotics_card:hover img{
	animation: product_rotate 2s cubic-bezier(0.47, 0.13, 0.03, 1.29) 1 forwards;
}
@keyframes product_rotate {
	0% {
		transform: rotateZ(0deg);
	}
	50% {
		transform: rotateZ(380deg); /* smaller 2nd bounce */
	}
	60% {
		transform: rotateZ(330deg); /* settle back */
	}
	80% {
		transform: rotateZ(380deg); /* first big bounce */
	}
	100% {
		transform: rotateZ(360deg); /* returns to base */
	}
}
.faq-section .content_dec ,.contact_form_sec .content_dec{
 	padding: 50px 0px;
 	color: #527267;
}
/*Relates product sec*/
.related_product_sec .sec_heading{
	text-align: center;
	font-size: 64px;
	font-weight: 500;
	line-height: 50px;
	margin-bottom: 90px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.related_product_sec .img_wrapper{
	/*background-color: #527267;*/
}
/*	supports relief sec*/
.supports_relief_sec{
	padding: 100px 0px;
}
.supports_relief_sec .main{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.supports_relief_sec .main .sec_content{
	width: 60%;
}
.supports_relief_sec .main .imgs_wrapper{
	width: 40%;
	display: flex;
	justify-content: space-between;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
.supports_relief_sec .sec_heading{
	font-size: 50px;
	font-weight: 500;
	line-height: 65px;
	color: #527267;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.supports_relief_sec .supports_relief_img{
	width: 140px;
	height: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	display: block;
}
/*	organic sec*/
.organic_sec{
	padding: 100px 0px;
	background-image: url("../img/hero-slide-bg-1.png");
	background-repeat: no-repeat;
	background-size: cover !important;
	background-position: center;
}
.organic_sec .sec_heading{
	font-size: 50px;
	font-weight: 500;
	line-height: 65px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 15px;
}
.organic_sec .sub_dec{
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
	margin-bottom: 35px;
}
.organic_sec .content{
	width: 50%;
}
.organic_sec .organic_sec_row{
	display: flex;
	flex-wrap: wrap;
}
.organic_sec .organic_sec_img{
    width: 100%;
    border-radius: 30px;
}
.organic_sec .organic_sec_img_col{
	padding: 0 15px;
}
.img_with_box{
	width: 100%;
	max-width: 380px;
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 25px;
}
.img_with_box .img{
	width: 78px;
	height: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}
.img_with_box .text{
	max-width:250px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: white;
	font-family: 'NewSpirit-Medium', sans-serif;
}
.footer_menu_row{
	display: flex;
	gap: 20px;
}
.footer_menu_row .menu_list{
	width: 33%;
}
.hero_row{
	display: flex;
	gap: 15px 20px;
	align-items: center;
}
.hero_row .hero_col{
	width: 50%;
}
.hero_row video,
.hero_row img{
	width: 100%;
    border-radius: 30px;
    object-fit: cover;
    height: 700px;
    object-position: center;
}
.hero_row img:not(.sec_img){
	height: auto;
	max-width: 200px;
    margin-left: auto;
    display: block;
    border-radius: 0;
}
.hero_row .sec_img{
	height: auto;
    max-width: 143px;
    display: block;
    border-radius: 0;
}
.hero_row .full_img{
	max-width: 100% !important;
    border-radius: 30px !important;
}
.hero_row .hero_col_dec{
	font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: white;
    font-family: 'NewSpirit-Medium', sans-serif;
    margin: 15px 0;
}
.page_hero_sec.no_bg{
	background-image: none !important;
	padding-right: 0 !important;
}
.hero_video_sec{
    position: relative;
}
.hero_video_sec .hero_video{
    display: block;
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
}
.hero_video_sec .vol_btn{
    position: absolute;
    top: 165px;
    right: 20px;
    z-index: 1;
    background-color: #527267;
    border-radius: 100%;
    padding: 12px;
    display: block;
    width: fit-content;
    border: none;
    cursor: pointer;
}
.hero_video_sec .vol_btn svg{
    width: 32px;
    height: 32px;
    display: block;
}
.hero_video_sec .vol_btn:not(.active) .mute{
    display: none;
}
.hero_video_sec .vol_btn.active .unmute{
    display: none;
}
.blog_sec{
    padding: 80px 0;
}
.blog_sec .sec_head{
	font-size: 35px;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 15px;
    color: #527267;
    font-family: 'NewSpirit-Medium', sans-serif;
}
.blog_row{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: 0 -15px;
    row-gap: 30px;
}
.blog_row .w_33{
    width: 33.3333334%;
}
.blog_row .blog_col{
    padding: 0 15px;
}
.blog_card{
    padding: 30px;
    border: 1px solid black;
    border-radius: 20px;
}
.blog_card .blog_img{
    width: 100%;
    display: block;
    border-radius: 20px;
    aspect-ratio: 1.7;
    object-fit: cover;
}
.blog_card .blog_head{
    color: #527267;
    font-family: 'NewSpirit-Medium', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.blog_card .read_more{
    background-color: #527267;
    color: white;
    border-radius: 10px;
    border: 2px solid #527267;
    font-family: Gotham, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    padding: 10px 23px;
    display: block;
    width: fit-content;
    text-decoration: none;
}
.blog_card .read_more:hover{
    background-color: transparent;
    color: #527267;
}
.blog_dec_sec img{
	width: 100%;
	max-width: 100% !important;
	border-radius: 30px;
	display: block;
}
.blog_dec_sec .content_sub_heading{
	color: #000000;
    font-family: 'Playfair Display', 'sans-serif';
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.blog_card .blog_excerpt{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    font-family: 'NewSpirit-Medium', sans-serif;
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
.logo_slider{
	margin: 100px 0;
}
.logo_slider .logo_slide_item {
    justify-content: flex-start;
    align-items: stretch;
    width: 150px;
    margin-right: 47px;
    display: flex;
}
.logo_slider .logo_slide_item img{
	display: block;
    width: 93px;
    height: auto;
    aspect-ratio: 1;
}
.logo_slider .slider_inner{
	display: flex;
}
.logo_slider .slider_inner .logo_slide_cont{
	display: flex;
}
.logo_slider.animation_ended.active .slider_inner .logo_slide_cont{
	animation: slider_loop 40s linear infinite;
}
.logo_slider.animation_ended.active{
	overflow: hidden;
}
@keyframes slider_loop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(1),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(2),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(3),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(4),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(5),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(6),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(7),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(8),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(9),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(10),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(11),
.logo_slider:not(.animation_ended) .logo_slide_cont:first-child .logo_slide_item:nth-child(12){
	transform: translate(0, -500px);
	opacity: 0;
	pointer-events: none;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(1){
	transition: 1s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(2){
	transition: 1.1s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(3){
	transition: 1.2s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(4){
	transition: 1.3s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(5){
	transition: 1.4s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(6){
	transition: 1.5s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(7){
	transition: 1.6s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(8){
	transition: 1.7s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(9){
	transition: 1.8s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(10){
	transition: 1.9s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(11){
	transition: 2s;
}
.logo_slider .logo_slide_cont:first-child .logo_slide_item:nth-child(12){
	transition: 2.1s;
}.faq-section{
	padding: 50px 0px;
}
.inner_faq_div {
	display: flex;
	flex-direction: column;
}
.faq-item {
	padding: 15px 0px;
	border-bottom: 2px solid #527267;
}
.faq-question h2 {
	font-size: 20px;
	line-height: 28px;
	color: #000;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-family: 'NewSpirit-Medium', sans-serif;
	font-weight: 500;
}
.faq-question svg {
	width: 18px;
	height: 18px;
	fill: #527267;
	transition: transform 0.3s ease;
}
.faq-answer {
	display: none;
}
.faq-answer p {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin: 0;
	font-weight: 400;
	letter-spacing: 0.5px;
	padding-top: 15px;
	font-family: Star Juice, 'NewSpirit-Medium', sans-serif;
}
.faq-answer ul{
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 15px;
	padding-left: 17px;
}
.faq-answer ul li {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin: 0;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: Star Juice, 'NewSpirit-Medium', sans-serif;
}
.faq-item.active .faq-question svg {
	transform: rotate(-180deg);
}
.desk_none{
	display: none;
}
/*blog page*/
.blog_dec_sec .post_content p{
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'NewSpirit-Medium', sans-serif;
    padding-bottom: 20px;
}
.blog_dec_sec .post_content h2{
    font-family: 'Playfair Display', 'sans-serif';
    font-size: 34px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 20px;
    padding-top: 25px;
    color: #527267 !important;
}
.blog_dec_sec .post_content h3{
        color: #527267 !important;
    font-family: 'Playfair Display', 'sans-serif';
    padding: 20px 0px;
    font-size: 34px;
    font-weight: 600;
    line-height: 25px;
}
.blog_dec_sec .post_content li{
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: black;
    font-family: 'NewSpirit-Medium', sans-serif;
    margin-bottom: 15px;
}
.blog_dec_sec .post_content ul{
    padding-left: 17px;
}
.blog_dec_sec .post_content img{
    width: 100%;
    max-width: 600px !important;
}
.blog_dec_sec .post_content a{
 text-decoration: none;
 color: #527267 !important;
 font-family: inherit;
}
.blog_dec_sec .post_content a:hover{
 text-decoration: none;
 color: #527267 !important;
 text-decoration: underline;
}
.blog_dec_sec .post_content .aloe_vera{
  margin-bottom:20px ;
}
.blog_dec_sec .post_content ol {
    padding-left: 17px;
}
.ingredient_heading{
	display: inline-block;
	padding: 8px 0px;
	font-size: 18px;
}
.svg_icon{
	width: 17px;
	height: 17px;
}
.svg_icon path{
	fill: white;
}
.svg_icon:hover{
	opacity: 0.65;
}
.testmonial_sec video{
	width: 100%;
	display: block;
	border-radius: 32px;
}
/*blog page*/
@media (min-width:1331px){
	.site_header .nav_list{
		column-gap: 29px;
	}
}
@media (max-width:1024px){
	.container{
		padding: 0px 20px;
	}
	.site_header .nav_list_wrapper{
		display: none;
	}
	.header_active .mobile_menu_open svg{
		color: #527267 !important;
	}
	.hero_sec .owl-stage-outer .owl-item .slide{
		min-height: 500px !important;
	}
	.hero_sec .owl-stage-outer .owl-item .slide .slide_heading{
		font-size: 22px;
		line-height: 32px;
		margin-bottom: 20px;
	}
	.hero_sec .owl-stage-outer .owl-item .slide .slide_dec{
		font-size: 14px;
		line-height: 23px;
		margin-bottom: 23px;
	}
	.hero_sec .owl-stage-outer .owl-item .slide .slide_content{
		width: 70%;
	}

	.hero_sec .slide .slide_content{
		display: none;
	}
	.hero_sec .mobile_slide{
		display: block;
		margin-top: 41px;
	}
	.hero_sec .mobile_slide .slide_heading{
		font-size: 24px;
		font-weight: 500;
		line-height: 35px;
		margin-bottom: 5px;
		color: #527267;
		font-family: 'NewSpirit-Medium', sans-serif;
	}
	.hero_sec .mobile_slide .slide_dec{
		font-size: 16px;
		line-height: 25px;
		font-weight: 400;
		letter-spacing: 0.5px;
		color: #000000;
		font-family: 'NewSpirit-Medium', sans-serif;
		margin-bottom: 15px;
	}
	.hero_sec .mobile_slide .slide_btn{
		color: #527267;
		text-decoration: none;
		border: 3px solid #527267;
		border-radius: 2000px;
		font-size: 14px;
		line-height: 14px;
		letter-spacing: 1px;
		font-family: 'Gotham-Medium', sans-serif;
		padding: 15px 30px;
		transition: .4s;
		display: inline-block;
		background-color: white;
	}
	.hero_sec .mobile_slide .slide_btn:hover{
		color: white;
		background-color: #527267;
	}
	.hero_sec .owl-prev{
		top: 57%;
	}
	.hero_sec .owl-next{
		top: 57%;
	}
	.mobile_menu_open{
		display: block;
	}
	.mobile_menu_wrapper .mobile_menu .menu_close_btn{
		position: absolute;
		right: 15px;
		top: 22px;
	}
	.mobile_menu_wrapper .mobile_menu .menu_close_btn svg{
		color: white;
	}
	.mobile_menu_wrapper .mobile_menu{
		position: relative;
		max-width: 70%;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #527267;
		padding: 44px 15px 15px 15px;
		z-index: 110;
	}
	.mobile_menu_wrapper .mobile_menu{
		transform: translateX(-70%);
		opacity: 0;
		user-select: none;
		pointer-events: none;
		transition: .4s;
	}
	.mobile_menu_wrapper .active_menu{
		opacity: 1;
		user-select: auto;
		pointer-events: auto;
		transition: .4s;
		transform: translateX(0%);
	}
	.mobile_menu_wrapper .mobile_menu .menu_list{
		display: flex;
		flex-direction: column;
		gap: 5px;
		align-items: start;
		list-style: none;
	}
	.mobile_menu_wrapper .mobile_menu .menu_list .list_item a{
		color: white;
		font-size: 16px;
		font-weight: 400;
		font-family: 'Gotham-Medium', sans-serif;
		line-height: 26px;
		letter-spacing: 1px;
		text-decoration: none;
		text-transform: uppercase;
	}
	.mobile_menu_wrapper{
		display: block;
	}
	.site_footer{
		padding-top: 103px;	
	}
	.site_footer .slide_animated_wave{
		transform: translateY(-82%) rotate(180deg);
	}
	.product_sec .product_head{
		font-size: 27px;
	}
	.product_sec .product_wrapper{
		width: 22%;
	}
	.product_sec .head .sec_heading{
		font-size: 52px;
		margin-bottom: 50px;
	}
	.image_with_text_sec .img_wrapper{
		width: 50%;
	}
	.image_with_text_sec .content_wrapper .sec_heading{
		font-size: 40px;
		line-height: 45px;
	}
    .blog_row .blog_col{
        padding: 0 8px;
    }
    .blog_row{
        margin: 0 -8px;
        row-gap: 16px;
        width: calc(100% + 16px);
    }
    .blog_row .w_33{
        width: 50%;
    }
}
@media(max-width: 991px){

	.sec_head {
		font-size: 28px;
	}
	.products_sec .sec_head{
		padding: 10px 0px;	
	}
	.wellness_sec_two .sec_head{
		padding: 10px 0px;	
	}
	.prebiotics_sec .sec_head {
		font-size: 45px;
		line-height: 55px;
		margin-bottom: 15px;
	}
	.prebiotics_sec .prebiotics_row .prebiotics_col {
		width: 50%;
		padding: 15px;
	}
	.prebiotics_sec .prebiotics_col_2nd{
		width: 100%;
	}
	.prebiotics_sec .prebiotics_col_2nd{
		width: 100%;
		padding: 0px;
	}
		.prebiotics_sec .sec_head {
		font-size: 32px;
		line-height: 55px;
		margin-bottom: 15px;
	}
}
@media (max-width:767px){
	.desk_none{
		display: block;
	}
	.wellness_sec_five .img_div_two video{
		height: auto;
	}
	.organic_sec .organic_sec_img_col{
		padding: 15px 0 0 0;
	}
	.search_box .search_input_box{
		max-width: 245px;
	}
	.search_box .search_input_box .search_input{
		padding:15px 15px 15px 40px;
		font-size: 14px;
	}
	.search_box .search_input_box .searchIcon{
		left: 13px;
	}
	.hero_sec .owl-stage-outer .owl-item .slide{
		min-height: 325px !important;
	}
	.testmonial_sec{
		padding: 50px 0 50px;
	}
	.testmonial_sec .slider_item{
		padding: 30px 20px;
	}
	.about_us_sec{
		padding: 100px 0px;
	}
	.about_us_sec .main{
		width: 100%;
	}
	.about_us_sec .sec_heading{
		font-size: 40px;
		line-height: 52px;
	}
	.about_us_sec .sec_dec{
		font-size: 17px;
		line-height: 32px;
		margin-bottom: 40px;
	}
	.hero_sec .mobile_slide{
		margin-top: 23px;
	}
	.hero_sec .owl-prev{
		top: 42%;
		left: 22px;
	}
	.hero_sec .owl-next{
		top: 42%;
		right: 22px;
	}
	.hero_sec .owl-next span, .owl-prev span{
		font-size: 31px;
	}

	.hero_sec .owl-next, .owl-prev{
		width: 39px;
		height: 39px;
	}
	.prebiotics_sec .prebiotics_row2 {
        display: flex;
		flex-direction: column-reverse;
	}
	/*	site footer*/
	.site_footer{
		padding-top: 57px;	
	}
	.site_footer .main{
		flex-direction: column;
	}
	.site_footer .logo_wrapper ,.site_footer .footer_menu ,.site_footer .footer_menu .menu_list ,.site_footer .bar_scan_wrapper{
		width: 100%;
	}
	.site_footer .slide_animated_wave{
		transform: translateY(-96.2%) rotate(180deg);
	}
	.site_footer .logo_wrapper .footer_dec{
		padding-top: 17px;
	}
	.site_footer .footer_menu{
		padding-top: 20px;
	}
	.site_footer .bar_scan_wrapper{
		padding-top: 20px;
	}
	.site_footer .footer_sub_head{
		font-size: 17px;
		line-height: 27px;
	}
	.products_sec .img_div {
		display: block;
		width: 100%;
		padding: 0px;
	}
	.products_hero_sec {
		padding: 100px 0px 100px 0px;
	}
	.products_sec .cotent_div {
		padding-top: 40px;
		display: block;
		width: 100%;
		padding: 0px;
	}
	.sec_main_div{
		width: 100% !important;
	}
	.products_sec .sec_head {
    	padding: 10px 0px;
	}
	.wellness_sec_two .img_div {
		display: block;
		width: 100%;
		padding: 0px;
	}
	.wellness_hero_sec {
		padding: 100px 0px 100px 0px;
	}
	.wellness_sec_two .cotent_div {
		padding-top: 40px;
		display: block;
		width: 100%;
		padding: 0px;
	}
	.sec_main_div{
		width: 100% !important;
	}
	.wellness_sec_two .sec_head {
    	padding: 10px 0px;
	}
	.wellness_sec_three .main_div{
		display: flex;
    	flex-direction: column;
	}
	.wellness_sec_two .main_div{
		display: block;
	}
	.wellness_sec_three .cotent_div{
		width: 100%;
		padding: 50px 0px 0px 0px;
		order: 2;
	}
	.wellness_sec_three .img_div{
		width: 100%;
		padding: 0px;
		order: 1;
	}
	.wellness_sec_two .img_div{
		width: 100%;
	}
	.wellness_sec_two .cotent_div{
		width: 100%;
		padding-top: 50px;
	}
	.wellness_sec_four {
		padding: 50px 0px;
	}
    .prebiotics_sec .sec_head {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    .prebiotics_sec .prebiotics_row .prebiotics_col {
        width: 100%;
        padding: 10px 0;
    }
    .product_sec .main{
		flex-direction: column;
	}
	.product_sec .product_head{
		font-size: 25px;
	}
	.product_sec .product_wrapper{
		width: 100%;
	}
	.product_sec .head .sec_heading{
		font-size: 35px;
		margin-bottom: 25px;
	}
	.product_sec{
		padding: 50px 0px;
	}
	.image_with_text_sec .content_wrapper ,.image_with_text_sec .img_wrapper{
		width: 100%;
	}
	.image_with_text_sec .main{
		flex-direction: column;
		gap: 25px;
	}
	.right_img_sec  .main{
		flex-direction: column-reverse;
	}
	.image_with_text_sec .content_wrapper .sec_heading{
		font-size: 35px;
		line-height: 37px;
	}
	.image_with_text_sec .content_wrapper .sec_sub_heading{
		font-size: 23px;
		line-height: 34px;
	}
	.image_with_text_sec .content_wrapper{
		padding-left: 0px;
	}
	.right_img_sec .content_wrapper{
		padding-right: 0px;
	}
	.image_with_text_sec .img_wrapper img{
		border-radius: 15px;
	}
	.about_us_sec .img_wrapper video{
		width: 100%;
		height: auto;
	}
	.image_with_text_sec{
		padding: 50px 0px;
	}
	.about_us_sec{
		padding: 50px 0px;
	}
	.contact_form_sec .contact_row .w_50,
	.contact_form_sec .contact_row .w_30,
	.contact_form_sec .contact_row .w_70,
	.contact_form_sec .contact_row .w_60,
	.contact_form_sec .contact_row .w_40{
		width: 100%;
	}
	.contact_form_sec{
		padding: 50px 0px;
	}
	.wellness_hero_sec {
		padding: 240px 0px 100px 0px;
	}
	.wellness_hero_sec .sec_head {
		line-height: 40px;
		font-size: 40px;
	}
	.products_hero_sec .sec_head {
		font-size: 40px;
		line-height: 40px;
	}
	.products_hero_sec {
		padding: 240px 0px 100px 0px;
	}
	.products_sec .main_div {
		display: block;
	}
	.hero_sec .owl-stage-outer .owl-item .slide_2 .slide_video{
		object-position: right;
	}
	.single_products_hero_sec .video_wrapper {
		height: auto;
		aspect-ratio: 1.7777;
	}
	.contact_form_sec .content_dec{
		margin-bottom: 25px;
	}
	.page_hero_sec{
		padding: 126px 0px 35px 0px;
		background-position: right bottom;
		background-image: url(../img/mob-gut.png);
		background-size: 299px;
		padding-right: 120px;
		background-position-x: calc(100% + 100px);
	}
	.page_hero_sec .page_hero_sec_head{
		font-size: 43px;
	}
	.image_with_text_sec .content_wrapper .sec_btn{
		min-width: 185px;
	}
	.related_product_sec .sec_heading{
		font-size: 35px;
		margin-bottom: 15px;
	}
	.supports_relief_sec .main{
		flex-direction: column-reverse;
		gap: 20px;
	}
	.supports_relief_sec .main .imgs_wrapper ,.supports_relief_sec .main .sec_content{
		width: 100%;
	}
	.supports_relief_sec .main .imgs_wrapper{
		justify-content: left;
	}
	.supports_relief_sec .supports_relief_img{
		width: calc(25% - 8px);
	}
	.supports_relief_sec .sec_heading{
		font-size: 27px;
		line-height: 39px;
	}
	.organic_sec{
		padding: 50px 0px;
	}
	.organic_sec .sec_heading{
		font-size: 27px;
		line-height: 39px;
	}
	.organic_sec .content{
		width: 100%;
	}
	.organic_sec .sub_dec{
		font-size: 16px;
	}
	.blog_row .w_33{
        width: 100%;
    }
    .blog_card{
        padding: 20px;
    }
	.hero_row .hero_col{
		width: 100%;
	}
	.hero_row{
		flex-wrap: wrap;
	}
	.hero_row img:not(.sec_img){
		margin: 0 auto;
	}
	.hero_video_sec .vol_btn{
		padding: 9px;
		top: 150px;
	}
	.hero_video_sec .vol_btn svg{
		width: 22px;
		height: 22px;
	}
	.blog_sec .sec_head{
		font-size: 23px;
		line-height: 34px;
	}
	.popup_overlay .popup_heading{
		font-size: 34px;
		line-height: 45px;
		margin-top: 60px;
		width: 100%;
	}
	.popup_overlay .popup{
		padding-top: 136px;
		min-height: 600px;
	}
	.popup_overlay .popup_dec{
		font-size: 17px;
		width: 100%;
	}
	.blog_dec_sec .post_content h3{
		line-height: 35px;
	}
}
@media (max-width:500px){
	.supports_relief_sec .supports_relief_img{
		width: calc(33.333334% - 7px);
	}

}