/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Infant:wght@400;600;800&display=swap');

:root {
	/* color */
	--BROWN: #edc5ab;
	--WHITE: #F4F5F8;
	--BLACK: #000000;
	--TEXT-GOLD: #c7875e;
	--GRAY: #402014;
	--TEXT-BROWN: #402014;

	/* size */
	--SIZE-16: 16px;
	--SIZE-20: 20px;
	--SIZE-24: 24px;
	--SIZE-26: 26px;
	--SIZE-28: 28px;
	--SIZE-32: 32px;
	--SIZE-40: 40px;

	/* weight */
	--WEIGHT-400: 400;
	--WEIGHT-600: 600;
	--WEIGHT-800: 800;

}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: var(--SIZE-16);
	font-family: 'Ysabeau Infant', sans-serif;
}

body {
	overflow-x: hidden;
}

.container_wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	width: 90%;
	max-width: 1440px;
}

.col-brown {
	color: var(--BROWN);
	margin-bottom: 10px;
}



/*_________________ header________________ */
.animation_border {
	position: relative;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.animation_border::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--GRAY);
	opacity: 0;
	transition: width 0.3s, opacity 0.3s;
}

.animation_border:hover::after {
	width: 100%;
	opacity: 1;
}

.header {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	background-color: var(--BROWN);
}

.header i {
	color: var(--GRAY);
	font-size: var(--SIZE-26);
	transition: all 300ms ease;
}

.header a:hover>i {
	transform: scale(1.2);
}

.top_header {
	width: 100%;
	background-color: var(--WHITE);
	display: flex;
	justify-content: center;
}

.top_header .container a,
.top_header .container li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5vw;
	text-decoration: none;
	color: var(--BLACK);
	font-weight: var(--WEIGHT-400);
}

.top_header .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1vw 0;
}

.top_header .container>ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	gap: 1vw;
	align-items: flex-start;
}

.bottom_header {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.main_nav {
	width: 100%;
}

.main_nav .menu-class {
	display: flex;
	flex-direction: row;
	list-style: none;
	gap: 2vw;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.main_nav .menu-class>li {
	flex: 1;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main_nav .menu-class>li>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.main_nav .menu-class a {
	text-decoration: none;
	color: var(--TEXT-BROWN);
	font-size: var(--SIZE-20);
}

.wpcf7-form {
	padding: 100px 0 100px 0;
}

.form_contact>div:nth-child(2)>p {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-top: 1vw;
}

.mobile_nav,
.mob_tel {
	display: none;
}

.language-switcher {
	position: relative;
	height: 25px;
}

.top_header .container>ul:last-child {
	gap: 0;
}

.top_header .container>ul:last-child>li {
	margin-right: 10px;
}

.planet {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
	margin-right: 3px !important;
}

.planet i {
	font-size: 16px;
}


.lang-dropdown-content {
	display: none;
}

.lang-dropdown-content.active {
	display: flex;
	flex-direction: column;
}

.lang-dropdown {
	border-radius: 3px;
	background-color: var(--WHITE);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: black;
	z-index: 40;
	position: inherit;
	border: 1px solid var(--GRAY);
}

.lang-button {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 23.5px;
}



/* ______________________footer */
footer {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
}

.footer_wrap {
	background-color: var(--BROWN);
	color: var(--TEXT-BROWN);
	width: 100%;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	padding: 1.5vw 0;
}

.footer_wrap .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: start;
}

.footer_wrap .container>div {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

.footer_logo>img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.footer_logo {
	width: 50%;
	height: 50%;
}

.footer_soc {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1vw;
	list-style: none;
	height: 30%;
}

.footer_soc a {
	color: var(--GRAY);
}

.footer_soc a>i {
	font-size: var(--SIZE-24);
	transition: all 300ms ease;
}

.footer_soc a:hover>i {
	transform: scale(1.2);
}

.footer_wrap .container>div h4 {
	text-transform: uppercase;
	font-size: var(--SIZE-20);
	text-align: center;
	color: var(--GRAY);
}

.footer_wrap .container>div:last-child ul {
	list-style: none;
}

.footer_wrap .container>div:last-child ul li span {
	margin-right: 0.5vw;
}

.footer_wrap .container>div:last-child ul li i,
.footer_wrap .container>div:nth-child(2) a i,
.footer_wrap .container>div:nth-child(3) p i {
	margin-right: 0.5vw;
}

.footer_wrap .container>div:nth-child(2)>div {
	display: flex;
	flex-direction: column;
}

.footer_wrap .container>div:nth-child(2)>div a {
	color: var(--TEXT-BROWN);
	text-decoration: none;
	transition: all 300ms ease;
}

.footer_wrap .container>div:nth-child(2)>div a:hover {
	color: #2d2d2d;
}





/* ______________________form */
.form_contact {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
}

.form_contact>div {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 2vw;
}

.form_contact_top>div {
	width: 50%;
}

.input_wrap {
	height: 60px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.area_wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.area_wrap .input_wrap>p {
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.wpcf7-form-control-wrap>input {
	width: 100%;
	height: 40px;
	display: inline-block;
	border: unset;
	border-bottom: 3px solid var(--BLACK);
	outline: unset;
}

.wpcf7-form-control-wrap>textarea {
	width: 100%;
	display: inline-block;
	outline: unset;
	border: unset;
	border-bottom: 3px solid var(--BLACK);
	height: 160px;
}

.label_text {
	position: absolute;
	bottom: 10px;
	z-index: 2;
	transition: bottom 0.3s, font-size 0.3s ease;
	pointer-events: none
}

.area_wrap .label_text {
	position: absolute;
	top: 25px;
	left: 5px;
	z-index: 2;
	transition: bottom 0.3s, font-size 0.3s ease;
	pointer-events: none;
}

.area_wrap .label_text.activ {
	top: 0px;
	font-size: 12px;
}

.label_text.activ {
	bottom: 28px;
	font-size: 12px;
}

.wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
	display: inline-block;
	height: 100%;
}

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

input[type="submit"] {
	background-color: var(--TEXT-GOLD);
	padding: 0.5vw 1vw;
	margin-top: 1vw;
	font-weight: var(--WEIGHT-600);
	text-transform: uppercase;
	cursor: pointer;
	border: unset;
	color: var(--WHITE);
	transition: all 300ms ease;
}

input[type="submit"]:hover {
	background-color: var(--GRAY);
}

.wpcf7-form h2 {
	font-size: var(--SIZE-32);
	color: var(--TEXT-GOLD);
	text-align: center;
}





.grecaptcha-badge {
	visibility: hidden;
}





/* ______________________HOME */
.slider_banner_wrap {
	position: relative;
}

.prev,
.next {
	font-size: 50px;
	padding-bottom: 15px;
	position: absolute;
	z-index: 1;
	width: 50px;
	height: 50px;
	background-color: var(--BROWN);
	display: flex;
	justify-content: center;
	align-items: center;
	top: 40%;
	color: var(--TEXT-BROWN);
	cursor: pointer;
}

.prev {
	right: 1vw;
}

.next {
	left: 1vw;
}

.slider_banner_item {
	width: 100%;
	height: 30vw !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider_banner_item>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.nav_services_prices {
	display: flex;
	flex-direction: row;
	list-style: none;
	gap: 1vw;
	padding: 2vw 0;
	font-size: var(--SIZE-24);
	font-weight: var(--WEIGHT-600);
	text-transform: uppercase;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pokritie,
.type_sugaring {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2vw;
}

.pokritie h4,
.type_sugaring h4 {
	font-size: var(--SIZE-20);
}

.type_sugaring>div,
.pokritie>div,
.pedikyur_post_type>div,
.podologiya_post_type>div,
.brovi_post_type>div,
.resnitsi_post_type>div,
.makeup_post_type>div {
	flex: 1;
	width: 40%;
	min-width: 450px;
	max-width: 45%;
	display: flex;
	flex-direction: column;
	gap: 0.5vw;
}

.type_sugaringe>div>ul,
.pokritie>div>ul,
.pedikyur_post_type>div>ul,
.podologiya_post_type>div>ul,
.brovi_post_type>div>ul,
.resnitsi_post_type>div>ul,
.makeup_post_type>div>ul {
	list-style: none;
}

.type_sugaring>div>ul>li,
.pokritie>div>ul>li,
.pedikyur_post_type>div>ul>li,
.podologiya_post_type>div>ul>li,
.brovi_post_type>div>ul>li,
.resnitsi_post_type>div>ul>li,
.makeup_post_type>div>ul>li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.dot {
	flex-grow: 1 !important;
	border-bottom: 2px dotted;
	height: 14px;
	margin: 0 4px;
}

.actie_block {
	display: block !important;
}

.nav_services_prices>li {
	color: var(--WHITE);
	background-color: var(--GRAY);
	padding: 1vw 2vw;
	transition: all 300ms ease;
}

.nav_services_prices>li:hover {
	background-color: var(--TEXT-GOLD);
}

.nav_services_prices>li.activ {
	background-color: var(--TEXT-GOLD);
}

.type_sugaring,
.pokritie,
.pedikyur_post_type,
.podologiya_post_type,
.brovi_post_type,
.resnitsi_post_type,
.makeup_post_type {
	display: none;
}

.slider_services_item {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	height: 500px !important;
	overflow: hidden;
	position: relative;
	margin: 0 1vw;
	text-decoration: none;
	color: var(--BLACK);
}

.slick-track {
	display: flex;
	flex-direction: row;
	align-content: center;
}

.slider_services_item:nth-child(even) {
	flex-direction: column-reverse;
}

.slider_services_item>img {
	object-fit: cover;
	height: 80%;
	width: 100%;
}

.slider_services_item>h5 {
	height: 20%;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	font-size: var(--SIZE-20);
}

.slider_services_item>p {
	position: absolute;
	bottom: -150px;
	background-color: rgba(0, 0, 0, 0.792);
	width: 100%;
	height: 20%;
	display: flex;
	align-items: center;
	color: var(--WHITE);
	transition: bottom 0.3s ease;
	padding: 10px;
}

.slider_services_item:hover>p {
	bottom: 0;
}

.home_text_services,
.home_text_prices {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5vw 0 0vw 0;
	text-align: center;
}

.home_text_services {
	padding: 5vw 0 3vw 0;
}

.home_text_services>h2,
.home_text_prices>h2 {
	color: var(--TEXT-GOLD);
	font-size: var(--SIZE-32);
}

.home_text_services>p,
.home_text_prices>p {
	font-size: var(--SIZE-20);
}

.home_text_services_control>span {
	font-size: var(--SIZE-40);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--WEIGHT-600);
	transition: all 300ms ease;
}

.home_text_services_control>span:hover {
	transform: scale(1.4);
}

.home_text_services_control {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1vw;
}

.price_color {
	color: var(--TEXT-GOLD);
	white-space: nowrap;
}

.prices {
	min-height: 600px;
}

.grid_img {
	margin-bottom: 3vw;
	display: grid;
	grid:
		"image_0 image_0 image_1"
		"image_3 image_2 image_2"
		"image_6 image_5 image_4"
		"image_8 image_8 image_7"
		/ 1fr 1fr 1fr;
	grid-gap: 2vw;
}

#image_0 {
	grid-area: image_0;
}

#image_1 {
	grid-area: image_1;
}

#image_2 {
	grid-area: image_2;
}

#image_3 {
	grid-area: image_3;
}

#image_4 {
	grid-area: image_4;
}

#image_5 {
	grid-area: image_5;
}

#image_6 {
	grid-area: image_6;
}

#image_7 {
	grid-area: image_7;
}

#image_8 {
	grid-area: image_8;
}

.grid_img>a {
	width: 100%;
	height: 200px;
	display: block;
	transition: scale 0.5s ease;
	border-radius: 10px;
	overflow: hidden;
}

.grid_img>a>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all 300ms ease;
}

.grid_img>a img:hover {
	transform: scale(1.1);
}

.work_home_text {
	text-align: center;
	padding: 3vw 0;
	font-size: var(--SIZE-32);
	color: var(--TEXT-GOLD);
}

.video_wrapp video {
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: relative;
}

.video_wrapp>div {
	height: 100%;
	max-width: 335px;
}

.video_wrapp {
	height: 596px !important;
	display: flex !important;
	justify-content: center;
	transition: all 300ms ease;
	position: relative;
}

.slick_video {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	padding-top: 3vw;
}

.video_wrapp.slick-center {
	transform: scale(1);
}

.video_wrapp {
	transform: scale(0.8);
}

.video_wrapp .video_wrapp_hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #0000008f;
	transition: all 300ms ease;
}

.video_wrapp.slick-center .video_wrapp_hover {
	opacity: 0;
	pointer-events: none;
}

.video-js {
	width: 100% !important;
}

.vjs-picture-in-picture-control,
.vjs-fullscreen-control {
	display: none !important;
}

.slick_video_control {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.slick_video_control i {
	font-size: var(--SIZE-24);
	cursor: pointer;
	color: var(--GRAY);
	transition: all 300ms ease;
}

.slick_video_control i:hover {
	transform: scale(1.2);
}

.slick-list {
	padding: 0 25% 0 0;
}









/*  ______________________404 */
.container.four {
	padding: 100px 0;
	display: flex;
	align-content: center;
	align-items: center;
	flex-direction: column;
}

.container.four a {
	text-decoration: none;
	background: var(--GRAY);
	padding: 5px 10px;
	font-size: var(--SIZE-20);
	margin-top: 30px;
	color: var(--WHITE);
}

.container.four a:hover {
	background-color: var(--TEXT-GOLD);
}






/* ______________________contact */
.contact-banner {
	width: 100%;
	height: 600px;
	position: relative;
}

.contact-banner>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.contact-banner::before {
	content: "";
	background-color: #0000005a;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner_contact_text {
	position: absolute;
	bottom: 10%;
	left: 10%;
	color: var(--TEXT-GOLD);
	font-size: var(--SIZE-40);
	text-transform: uppercase;
	z-index: 2;
	font-weight: var(--WEIGHT-800);
}

.container.contact {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
}

.container.contact>div {
	flex: 1;
}

.container.contact>div:last-child {
	padding: 2vw;
}

.container.contact .form_contact>div {
	flex-direction: column;
	gap: 1vw;
}

.container.contact .form_contact_top>div {
	width: 100%;
}

.container.contact>div:first-child {
	display: flex;
	flex-direction: column;
	padding: 2vw;
	gap: 1vw;
	color: var(--GRAY);
	font-size: var(--SIZE-20);
}

.container.contact>div:first-child span,
.container.contact>div:first-child a,
.container.contact>div:first-child p {
	color: var(--GRAY);
	font-size: var(--SIZE-20);
	text-decoration: none;
	font-weight: var(--WEIGHT-600);
	transition: all 300ms ease;
}

.container.contact>div:first-child ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1vw;
}

.container.contact>div:first-child i {
	margin-right: 0.5vw;
}

.container.contact>div:first-child a:hover {
	color: var(--TEXT-GOLD);
}

.container.contact>div:first-child p {
	margin-bottom: 3vw;
}

.page_prices {
	display: flex;
	width: 100%;
	padding: 100px 0 0 0;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.page_prices.manik {
	display: flex;
	width: 100%;
	padding: 100px 0 0 0;
	justify-content: unset;
	flex-direction: unset;
	align-items: unset;
}

.page_prices h4 {
	color: var(--BROWN);
	margin: 0 auto;
	text-align: center;
	padding: 0 0 50px 0;
	font-size: var(--SIZE-32);
}

.page_prices>ul {
	list-style: none;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.page_prices>ul>li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.page_prices>ul>li span {
	font-size: var(--SIZE-20);
}

.page_prices .dot {
	margin: 6px 4px;
}

.page_prices.manik {
	flex-wrap: wrap;
	gap: 2vw;
}

.page_prices.manik>div {
	flex: 1;
	min-width: 40%;
	max-width: 48%;
}

.page_prices.manik h4 {
	margin-bottom: 1vw;
	font-size: var(--SIZE-24);
}

.page_prices.manik li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.page_prices.manik span {
	font-size: var(--SIZE-20);
}






/* ______________________page */
.page_bannet {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 2vw 0;
}

.page_bannet>div {
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 2vw;
}

.page_bannet_img {
	width: 100%;
	height: 300px;
}

.page_bannet_img>img {
	object-fit: cover;
	width: 70%;
	height: 100%;
	border-radius: 20px 0 0 20px;
}

.page_bannet_text>p {
	font-size: var(--SIZE-20);
}

.container.bannet.mobile {
	display: none;
}

.container.bannet {
	margin-top: 60px;
}

.gallery-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	justify-content: space-between;
	justify-items: stretch;
	align-items: start;
	gap: 10px;
	padding: 50px 0 0 0;
	position: relative;
}

.box {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	transition: all 400ms ease;
}

.box>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.box.item-7 {
	grid-column: 4;
}

.box.item-6 {
	grid-column: 2;
}


.box.item-1,
.box.item-3,
.box.item-5 {
	transform: translateY(50%);
}

.box:hover {
	transform: scale(1.5);
	z-index: 2;
	cursor: pointer;
}

.gallery-wrapp h4 {
	color: var(--BROWN);
	margin: 0 auto;
	text-align: center;
	padding: 100px 0 0;
	font-size: var(--SIZE-32);
}




.pokritie,
.type_sugaring {
	margin: 1.5em 0;
	padding: 0;
	column-gap: 1.5em;
	/* Общее расстояние между колонками */
	font-size: .85em;
	-moz-column-gap: 1.5em;
	/* Расстояние между колонками для Firefox */
	-webkit-column-gap: 1.5em;
	/* Расстояние между колонками  для Safari, Chrome и iOS */
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}

/* Элементы в виде плиток с содержанием */
.pokritie>div,
.type_sugaring>div {
	display: inline-block;
	min-width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 20px;
}







@media only screen and (man-width: 600px) {
	.masonry {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}




@media (max-width: 1400px) {
	.video_wrapp:first-child {
		transform: scale(0.7) translateX(20%);
	}

	.video_wrapp:last-child {
		transform: scale(0.7) translateX(-20%);
	}
}

@media (max-width: 1200px) {
	.video_wrapp:first-child {
		transform: scale(0.7) translateX(0);
	}

	.video_wrapp:last-child {
		transform: scale(0.7) translateX(0);
	}
}


@media (max-width: 1000px) {
	.slick_video {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}


	:root {
		/* size */
		--SIZE-20: 16px;
	}

}

@media (max-width: 768px) {
	.gallery-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.box.item-7 {
		grid-column: 2;
	}

	.box.item-6 {
		grid-column: unset;
	}

	.page_prices.manik>div {
		min-width: 320px;
		max-width: unset;
	}

	.video_wrapp {
		height: 590px !important;
	}
}

@media (max-width: 600px) {
	.video_wrapp {
		height: 467px !important;
	}

	.container.contact>div:first-child {
		flex-direction: row;
		gap: 1vw 3vw;
		flex-wrap: wrap;
	}

	.form_contact>div {
		flex-direction: column;
	}

	.container.bannet {
		display: none;
	}

	.container.bannet.mobile {
		display: block;
	}

	.container.bannet.mobile .page_bannet_img>img {
		border-radius: 20px;
	}

	.form_contact_top>div {
		width: 100%;
	}

	.footer_wrap .container {
		flex-wrap: wrap;
		gap: 2vw;
	}

	.footer_wrap .container>div {
		min-width: 40%;
	}

	.prices {
		min-height: 300px;
	}

	.wpcf7.js {
		margin: 10vw 0 5vw;
	}

	.footer_wrap {
		padding: 5vw 0;
	}

	.nav_services_prices {
		padding: 5vw 0;
	}

	.page_prices>ul {
		width: 100%;
	}

	.page_bannet {
		flex-direction: column;
		gap: 5vw;
		padding: 5vw 0px;
	}

	.page_prices {
		flex-direction: column;
		padding: 12vw 0;
	}

	.container.contact {
		flex-direction: column;
	}

	.contact-banner {
		height: 200px;
	}

	.main_nav {
		display: none;
	}

	.mob_tel {
		display: block;
	}

	.mobile_nav {
		display: none;
		position: absolute;
		top: 0;
		z-index: 3;
		background: var(--BROWN);
		right: -29px;
		width: 115%;
		z-index: 40;
	}

	.body_before {
		overflow: hidden;
	}

	.body_before::before {
		content: '';
		width: 100vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #000000a8;
		z-index: 1;
	}

	.menu_class_mobile {
		list-style: none;
		padding: 5vw 3vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2vw;
	}

	.menu_class_mobile a {
		color: var(--WHITE);
		text-decoration: none;
		cursor: pointer;
		font-size: var(--SIZE-20);
	}

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

	.main_logo_mobile>div {
		width: 30%;
	}

	.main_logo_mobile>div>img {
		object-fit: contain;
		width: 100%;
	}

	.soc_mobile>ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		list-style: none;
		gap: 2vw;
		padding-top: 5vw;
	}

	.soc_mobile>ul>li a i {
		color: var(--TEXT-GOLD);
	}

	.nav_trigger_off {
		position: absolute;
		z-index: 4;
		width: 30px;
		height: 30px;
		right: 40px;
		top: 25px;
		cursor: pointer;
	}

	.nav_trigger_off span {
		position: absolute;
		z-index: 4;
		width: 100%;
		border: 2px solid white;
	}

	.nav_trigger_off span:first-child {
		transform: rotate(45deg);
	}

	.nav_trigger_off span:last-child {
		transform: rotate(135deg);
	}

	.nav_trigger_on {
		display: flex;
		width: 30px;
		height: 30px;
		cursor: pointer;
		flex-direction: column;
		justify-content: space-around;
	}

	.nav_trigger_on span {
		display: flex;
		width: 100%;
		border: 2px solid white;
	}

	.bottom_header {
		padding: 2vw 0;
	}

	.top_header {
		display: none;
	}

	.bottom_header {
		justify-content: space-between;
	}

	.mob_tel {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}

	.lang-dropdown-content.active {
		display: flex;
		flex-direction: column;
		background-color: var(--BROWN);
		list-style: none;
		z-index: 40;
	}

	.language-switcher {
		color: var(--WHITE);
		width: 30px;
		text-align: center;
	}

	.lang-dropdown {
		background-color: var(--BROWN);
		position: inherit;
		z-index: 40;
		border: 1px solid var(--WHITE);
	}

	.lang-button {
		color: var(--WHITE);
	}

	.mob_tel a {
		display: flex;
		flex-direction: row;
		justify-content: center;
		color: var(--WHITE);
		text-decoration: none;
		align-items: center;
		gap: 2vw;
		font-size: var(--SIZE-20);
	}

	.mob_tel a:hover {
		color: var(--GRAY);
	}

	.mob_tel a i {
		color: var(--WHITE);
	}

	.nav_services_prices>li,
	input[type="submit"] {
		padding: 2vw 3vw;
	}

	.slider-banner .slider_banner_item {
		height: 50vw !important;
	}

	.slider_services .slider_services_item {
		height: 300px !important;
	}

	.actie_block {
		display: flex !important;
		flex-direction: column;
	}

	.pokritie>div,
	.pedikyur_post_type>div,
	.podologiya_post_type>div,
	.brovi_post_type>div,
	.resnitsi_post_type>div {
		flex: 1;
		width: 100%;
		min-width: unset;
		max-width: unset;
		display: flex;
		flex-direction: column;
		gap: 0.5vw;
	}

	.lang-dropdown a {
		color: var(--WHITE) !important;
	}

	:root {
		/* size */
		--SIZE-16: 14px;
		--SIZE-20: 16px;
		--SIZE-24: 24px;
		--SIZE-28: 28px;
		--SIZE-32: 32px;
		--SIZE-40: 40px;

		/* weight */
		--WEIGHT-400: 400;
		--WEIGHT-600: 600;
		--WEIGHT-800: 800;

	}

	@media (max-width: 375px) {
		.video_wrapp {
			height: 400px !important;
		}
	}
}

.booking-btn {
	background-color: var(--TEXT-GOLD);
	color: var(--WHITE);
	padding: 1vw 2vw;
	transition: all 500ms ease;
	max-width: fit-content;
	z-index: 2;
	text-decoration: unset;
}

.slider_banner_wrap .booking-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	border: 2px solid white;

}

header .booking-btn {
	position: fixed;
	border: 2px solid white;
	border-radius: 10px;
	right: 20px;
	bottom: 45px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	transform-origin: center;
	animation: pulse-gold 2s infinite;
	font-size: 20px;
}

@keyframes pulse-gold {
	0% { box-shadow: 0 0 0 0 rgba(191, 153, 90, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(191, 153, 90, 0); }
	100% { box-shadow: 0 0 0 0 rgba(191, 153, 90, 0); }
}

.booking-btn:hover{
	background-color: var(--GRAY);
	text-decoration: underline;
}