@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
/* font-family: "El Messiri", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Raleway", sans-serif; */

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	color: var(--black);
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 155%;
	background-color: #FFFEFD;
	--font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	user-select: none;
}

a {
	text-decoration: none;
}

li {
	list-style-type: none;
}

.container {
	max-width: 1540px;
	padding: 0px 50px;
	margin: 0px auto;
	width: 100%;
}

/*************************************color******************************/

:root {
	--white: #fff;
	--black: #181818;
	--yellow: #BE9B47;
	--cream: #FAF7F0;
	--light-white: #FFFEFD;
}

.bg_black {
	background-color: var(--black);
}

.bg_cream {
	background-color: var(--cream);
}

.bg_light_white {
	background-color: var(--light-white);
}

a.btn {
	font-size: 18px;
	font-family: "Raleway", sans-serif;
	color: var(--white);
	background: var(--yellow);
	font-weight: 700;
	line-height: 122.222%;
	padding: 20px 38px;
	transition: all ease-in-out 0.4s;
	border: 1px solid var(--yellow);
	display: flex;
	width: max-content;
	gap: 10px;
	align-items: center;
	border-radius: 60px;
}

a.btn svg path {
	transition: all ease-in-out 0.4s;
}

.btn:hover svg path {
	fill: var(--yellow);
}

a.btn:hover,
a.btn:focus,
a.btn:active {
	color: var(--yellow);
	transition: all ease-in-out 0.4s;
	background: transparent;
}

a.white_btn {
	background: transparent;
	border: 1px solid var(--white);
}

a.white_btn:hover,
a.white_btn:focus,
a.white_btn:active {
	background: var(--white);
	color: var(--yellow);
}

a {
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-style: normal;
	line-height: normal;
	color: var(--black);
	font-weight: 700;
	font-family: "El Messiri"
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
	user-select: none;
	width: auto;
}

h1,
.title_h1 {
	font-size: 70px;
	line-height: 114.286%;
}

h2,
.title_h2 {
	font-size: 60px;
	line-height: 116.667%;
}

h3,
.title_h3 {
	font-size: 36px;
	font-weight: 600;
}

h4,
.title_h4 {
	font-size: 24px;
	text-transform: capitalize;
	color: var(--white);
}

p,
li {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	color: var(--black);
	font-family: "Raleway", sans-serif;
}

.cmn_pad {
	padding: 120px 0;
}

/********header*********/

.site-header {
	position: absolute;
	width: 100%;
	z-index: 99;
	padding: 20px 0;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}

.header_menu ul li a {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease-in-out;
	color: var(--white);
}

.header_menu ul li a:hover,
.header_menu ul li.current-menu-item a {
	-webkit-text-stroke: 0.7px var(--yellow);
	color: var(--yellow);
}

.header_left_row {
	display: flex;
	align-items: center;
	width: 52.431%;
	gap: 20px;
	justify-content: space-between;
}

.header_menu .menu {
	display: flex;
	gap: 30px;
}

.header_contact_us {
	width: max-content;
}

a.btn.for_mb {
    display: none;
}
.mobileIcon {
    display: none;
}
/*********banner*********/

.hero {
	position: relative;
	min-height: 1020px;
	display: flex;
	align-items: end;
	justify-content: center;
	z-index: 1;
	overflow: hidden;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero_image {
	position: relative;
	height: 100%;
}

.hero_image::after {
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.69);
	width: 100%;
	height: 100%;
	inset: 0;
	background-size: 100%;
}

.hero_content {
	position: relative;
}

.banner_content_main {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.banner_title {
	width: 72.917%;
}

.banner_title .title_h1 {
	color: var(--white);
}

.banner_btn {
	width: max-content;
}

/***********welcome section************/

.welcome-section {
	position: relative;
	overflow: hidden;
}

.welcome-section::after {
	content: '';
	position: absolute;
	background: url(/wp-content/uploads/2025/03/welcome_patch.png);
	right: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 394px;
	height: 397px;
}

.welcome-section::before {
	content: '';
	position: absolute;
	background: url(/wp-content/uploads/2025/03/welcome_patch_left.png);
	width: 355px;
	height: 330px;
	left: 0;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
}

.welcome-top {
	display: flex;
	gap: 80px;
}

.welcome_title {
	width: 48.959%;
}

.welcome-desc,
.belega-content,
.wwd-content {
	flex: 1;
}

.welcome-desc p:not(:last-child) {
	padding-bottom: 8px;
}

.welcome-bottom {
	aspect-ratio: 16/7.556;
	position: relative;
}

.welcome-bottom iframe,
.welcome-bottom video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	border-radius: 20px;
}

/******************service section*******************/

.bs-top .title_h2,
.bs-top p,
.bs-con .title_h3,
.bs-con p,
.wwd-top .title_h2,
.wwd-top p,
.top-hydrabeauty .title_h2,
.belega-top .title_h2,
.benefits-home-top .title_h2,
.benefits-home-top p,
.benefit-content .title_h3,
.benefit-content p,
.faq-top .title_h2,
.faq-top p {
	text-align: center;
}

.bs-top {
	display: flex;
	gap: 16px;
	flex-direction: column;
	max-width: 1080px;
	margin: 0 auto;
}

.bs-bottom {
	display: flex;
	gap: 30px;
	align-items: start;
}

.bs-card {
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	background: var(--white);
	border-radius: 30px;
	width: calc((100% - (2* 30px)) / 3);
}

.bs-card .card-img img {
	width: 80px;
	height: 80px;
}

.bs-card .card-img {
	padding: 20px;
	border-radius: 16px;
	background: var(--yellow);
	width: 150px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs-con {
	max-width: 346px;
	margin: 0 auto;
}

.bs-con .title_h3,
.benefit-content .title_h3 {
	padding-bottom: 16px;
}

.bs-card:nth-child(odd) {
	margin-top: 100px;
}

/****logo section***/

.logo-section.cmn_pad {
	padding-bottom: 0;
}

.logo_img {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
}

/********belega section*****/

.belega-top .title_h2 {
	max-width: 1010px;
	margin: 0 auto;
}

.belega-top,
.bs-top,
.top-hydrabeauty,
.wwd-top,
.benefits-home-top,
.faq-top,.welcome-top {
	padding-bottom: 60px;
}

.belega-bottom {
	display: flex;
	gap: 80px;
	align-items: center;
	padding: 30px 0;
	border-top: 1px solid rgba(24, 24, 24, 0.10);
}

.belega-img img,
.wwd-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.belega-img,
.wwd-img {
	width: 48.959%;
}

.belega-bottom:nth-child(odd) {
	flex-direction: row-reverse;
}

.belega-bottom:last-child {
	padding-bottom: 0;
}

.belega_inr_title,
.belega_inr_des p:not(:last-child) {
	padding-bottom: 8px;
}

/***********hydrabeauty**********/

.top-hydrabeauty .title_h2 {
	max-width: 770px;
	margin: 0 auto;
}

.hydrabeauty_swiper_wrapper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	position: absolute;
	inset: 0;
}

.hydrabeauty_swiper_wrapper .swiper-slide {
	position: relative;
	padding-top: 43.75%;
}

.hydrabeauty_row_content {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	padding-top: 46px;
}

.hydrabeauty_swiper_title .title_h3 {
	text-align: center;
	opacity: 0.4;
}

.hydrabeauty_swiper_title .swiper-slide-active .title_h3 {
    opacity: 1;
}

.hydrabeauty_swiper_desc p {
	text-align: center;
}

.hydrabeauty_btns .swiper-button-next,
.hydrabeauty_btns .swiper-button-prev {
	position: unset;
	margin: 0;
	cursor: pointer;
}

.hydrabeauty_btns {
	position: absolute;
	display: flex;
	justify-content: space-between;
	max-width: 1262px;
	flex-direction: row-reverse;
	width: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
	bottom: 11.4%;
	z-index: 1;
}

.bottom-hydrabeauty {
	position: relative;
}

.hydrabeauty_swiper_title {
	padding-bottom: 54px;
}

.hydrabeauty_btns .swiper-button-next:after,
.hydrabeauty_btns .swiper-button-prev:after {
	font-size: 30px;
	color: var(--yellow);
	font-weight: 700;
}

/**************wwd****************/

.wwd-top .title_h2,
.benefits-home-top .title_h2,
.faq-top .title_h2,
.cta-home-content .title_h2 {
	padding-bottom: 16px;
}

.wwd-top {
	max-width: 1080px;
	margin: 0 auto;
}

.wwd-bottom {
	border: none !important;
	flex-direction: row-reverse;
	display: flex;
	gap: 80px;
	align-items: center;
}

.wwd-bottom:nth-child(odd) {
	flex-direction: row;
}

.wwd-bottom:not(:last-child) {
	padding-bottom: 30px;
}

.wwd-content p {
	padding: 0 0 10px 34px;
	position: relative;
}

.wwd-content p:last-child {
	padding-bottom: 0;
}

.wwd-content p::before {
	content: '';
	position: absolute;
	background: url(/wp-content/uploads/2025/03/star_icon.svg);
	width: 24px;
	height: 24px;
	left: 0;
	top: 2px;
	background-size: 100%;
	background-repeat: no-repeat;
}

/***************benefits***********************/

.benefits-home-top .title_h2,
.benefits-home-top p,
.benefit-content .title_h3,
.benefit-content p,
.cta-home-content .title_h2,
.cta-home-content p {
	color: var(--white);
}

.benefits-home-top,
.faq-top {
	max-width: 992px;
	margin: 0 auto;
}

.benefits-home-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: start;
}

.benefit-card {
	width: calc((100% - (3* 30px)) / 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.benefit-img img {
	width: 80px;
	height: 80px;
}

.benefit-img {
	background: var(--yellow);
	padding: 20px;
	width: 140px;
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-card:nth-child(even) {
	margin-top: 80px;
}

/*********faq***********/

.faq-ans {
	display: none;
}

.faq-questions {
	border-radius: 20px;
	border: 1px solid rgba(24, 24, 24, 0.20);
	padding: 30px;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.faq-card.open .faq-questions.active {
	border: none;
	padding-bottom: 0;
}

.faq-card.open {
	border-radius: 20px;
	border: 1px solid rgba(190, 155, 71, 0.20);
	background: var(--cream);
}

.faq-card.open .faq-ans {
	padding: 10px 30px 30px;
}

.faq-ans p:not(:last-child) {
	padding-bottom: 10px;
}

.faq-bottom {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.faq-minus {
	display: none;
}

.faq-questions.active .faq-plus {
	display: none;
}

.faq-questions.active .faq-minus {
	display: block;
}

/************cta section******/

.cta-section.cmn_pad {
	padding-top: 0;
	margin-top: 23px;
}

.cta_main {
	border-radius: 16px;
	background: linear-gradient(93deg, #BE9B47 16.99%, #F2DB8B 105.84%);
	align-items: center;
	padding: 0 80px 0 60px;
	gap: 50px;
	justify-content: space-between;
	display: flex;
}

.cta-home-img {
	width: 26.078%;
	margin-top: -23px;
}

.cta-home-content {
	flex: 1;
	max-width: 682px;
}

.cta-home-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-home-content .white_btn {
	margin-top: 30px;
}

/**************footer***********************/

.footer {
	padding: 80px 0 35px;
}

.cmn_footer_menu .menu li a,
.footer-extra-menu .menu li a {
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	line-height: 133.333%;
	transition: all ease-in-out 0.4s;
}

.cmn_footer_menu .menu li:not(:last-child) a {
	padding-bottom: 8px;
}

.cmn_footer_menu .menu li a:hover,
.footer-address-content a:hover,
.footer-extra-menu .menu li a:hover {
	color: var(--yellow);
}

.footer-extra-menu .menu li a {
	font-size: 16px;
}

.footer_left_desc p {
	color: var(--white);
}

.footer-address-content p,
.footer-address-content a {
	color: var(--white);
	transition: all ease-in-out 0.4s;
}

.footer-top {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.footer-icon {
	width: 34.375%;
}

.footer_links {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	width: 25.556%;
}

.contact-info-footer {
	width: 21.459%;
}

.footer-address-content p {
	font-size: 18px;
}

.footer-address {
	display: flex;
	gap: 16px;
}

.footer-address-icon img {
	width: 20px;
	height: 20px;
}

.footer-address-icon {
	background: var(--yellow);
	width: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
}

.footer-address-content {
	flex: 1;
}

.footer-address:not(:last-child) {
	padding-bottom: 8px;
}

.footer-top .title_h4 {
	padding-bottom: 16px;
}

.footer_logo a {
	width: max-content;
	display: block;
}

.footer_left_desc {
	margin: 16px 0 40px;
}

.footer_form {
	display: flex;
	gap: 4px;
}

.footer_form p br {
	display: none;
}

.footer_form p .wpcf7-spinner {
	display: none;
}

.footer_form .footer_email {
	padding: 14px 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	color: var(--black);
	border-radius: 8px;
	background: var(--white);
	outline: none !important;
	box-shadow: none !important;
	border: 1px solid transparent !important;
	max-width: 320px;
}

.footer_btn {
	position: relative;
	border-radius: 8px;
	background: var(--yellow);
	padding: 10px;
	font-size: 0px;
	box-shadow: none !important;
	outline: none !important;
	cursor: pointer;
	border: 1px solid var(--yellow);
	width: 54px;
	height: 100%;
	transition: all ease-in-out 0.4s;
}

.footer_btn:hover {
	background: transparent;
	border: 1px solid white;
}

.footer_form p:last-child::after {
	content: '';
	position: absolute;
	background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.4664 13.0896L3.02423 13.0896C2.82836 13.0896 2.65523 13.0167 2.50486 12.8708C2.35436 12.7248 2.27911 12.5494 2.27911 12.3445C2.27911 12.1397 2.35206 11.9643 2.49796 11.8184C2.64398 11.6724 2.8194 11.5994 3.02423 11.5994L18.4664 11.5994L14.085 7.21801C13.9347 7.06775 13.8596 6.89091 13.8596 6.6875C13.8597 6.48421 13.9349 6.30743 14.0851 6.15717C14.2355 6.00679 14.4122 5.93166 14.6153 5.93178C14.8186 5.9319 14.9954 6.00709 15.1456 6.15735L20.6936 11.7053C20.8747 11.8864 20.9652 12.0995 20.9651 12.3445C20.9652 12.5895 20.8747 12.8026 20.6936 12.9838L15.1456 18.5317C14.9954 18.682 14.8185 18.7571 14.6151 18.7571C14.4118 18.757 14.2351 18.6818 14.0848 18.5315C13.9344 18.3812 13.8593 18.2044 13.8594 18.0014C13.8595 17.7981 13.9347 17.6213 14.085 17.4711L18.4664 13.0896Z" fill="white"/></svg>');
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.footer_form p:last-child {
	position: relative;
}

.footer_form .wpcf7-not-valid-tip {
	font-size: 16px;
	position: absolute;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	padding-top: 16px;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.footer-copyright p {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	opacity: 0.8;
}

.footer-extra-menu .menu {
	display: flex;
	gap: 32px;
	align-items: center;
}



.footer-copyright {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    opacity: 0.8;
}