:root {
	--white : #fff;
	--green: #94C11A;
	--yellow: #FFEE00;
	--grey: #3a3a3a;



	--transition-custom: .4s all linear;
	--swiper-slide-width: 366px;
	--swiper-slide-img-heigh: 241px;
}

/* Добавляем пользовательский класс для отступа */
.custom-gutter {
	margin-right: -16px;
	margin-left: -16px;
}
.custom-gutter > .col,
.custom-gutter > [class*="col-"] {
	padding-right: 16px;
	padding-left: 16px;
}

/*
@media (max-width: 1025px) {
	.custom-gutter {
		padding: 0 6px;
	}
}
@media (max-width: 1025px) {
	.container {
		max-width: calc(100% - 32px);
		padding: 0;
	}
}
*/
@media (min-width: 1025px) {
	.container {
		width: calc(100% - 100px);
		max-width: 1180px;
		padding: 0;
	}
}
@media (min-width: 1025px) and (max-width: 1300px) { /* Очень странный планшет, но вот так решил дизигнер, так и живем */
	.container {
		width: calc(100% - 100px);
		max-width: 1077px;
		padding: 0;
	}
}

.paralax_block .itm_paralax {
	transition: 0.1s all linear;
}
@media (max-width: 767px) { /* Мобилка */
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: unset!important;
	}
}
@media (min-width: 768px) and (max-width: 1300px) {  /* Планшет */
	/*
	.container {
		max-width: calc(100% - 100px);
	}
	*/
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: unset!important;
	}
	.mob_img {
		display: none;
	}
}
@media (min-width: 1301px) { /* pc */
	.pc_img {
		display: unset!important;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: none;
	}

}
[class*="btn"] {
	display: inline-block;
	text-decoration: none;
	transition: var(--transition-custom);
	border: transparent;
	cursor: pointer;
}
a, button {
	transition: var(--transition-custom);
	position: relative;
	z-index: 6;
}
img {
	width: 100%;
}
/*
p {
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
}

*/





.btn_outline_yellow {
	color: var(--white);
	border: 2px solid var(--yellow);
	border-radius: 25px;
	padding: 10px 28px 8px 28px;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-align: center;
	transition: var(--transition-custom);
}
@media (hover:hover) {
	.btn_outline_yellow:hover {
		 text-shadow: 0 0 15px var(--white);
	}
}

.btn_outline_green {
	color: var(--grey);
	border: 2px solid var(--green);
	border-radius: 25px;
	padding: 10px 28px 8px 28px;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-align: center;
	transition: var(--transition-custom);
}
@media (hover:hover) {
	.btn_outline_green:hover {
		 text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	}
}

@media (max-width: 767px) {
	.btn_outline_yellow {
		font-size: 8.7px;
		padding: 4px 7px;
		min-width: 70px;
		box-sizing: border-box;
	}
	.btn_outline_green {
		font-size: 13px;
	}
}
@media (min-width: 768px) and (max-width: 1217px) {
	.btn_outline_yellow {
		font-size: 2vw;
	}
}



* {
	margin: 0;
	padding: 0;
	font-family: 'FloraCTT';
}
body {
	font-family: 'FloraCTT';
}


header {
	padding-top: 30.99px;
	position: absolute;
	width: 100%;
	z-index: 3;
}
header .top_menu {
	display: flex;
	justify-content: space-between;
	align-items: self-start;
}
header .top_menu .left_menu, header .top_menu .right_menu {
	flex: 1;
	display: inline-flex;
	gap: 39px;
}
header .top_menu .left_menu {

}

header .top_menu .logo {
	display: inline-flex;
}
header .top_menu .logo img, 
header .top_menu .logo svg {
	max-width: clamp(73.89px, 10.76vw, 155px);
	aspect-ratio: 155/107;
}
 /* Облако - изначально прозрачное и уменьшенное */
 .logo .cloud {
 	opacity: 0;
 	transform: scale(0);
 	transform-origin: center;
 	animation: cloudAppear 1.5s forwards 0.5s;
 }

 /* Текст - изначально прозрачный */
 .logo .normal_text, .logo .big_text, .logo .heart {
 	opacity: 0;
 }

 /* Анимация появления обычного текста */
 .logo .normal_text {
 	animation: fadeIn 0.8s forwards 2s;
 }

 /* Анимация появления большого текста */
 .logo .big_text {
 	animation: fadeIn 0.8s forwards 2.8s;
 }

 /* Анимация появления сердца с эффектом биения */
 .logo .heart {
 	animation: 
 	fadeIn 0.8s forwards 3.6s,
 	heartbeat 2.4s 4.4s;
 	animation-fill-mode: both;
 	transform-origin: center;
 	stroke-width: 2px;
 	stroke: white;
 }

 /* Ключевые кадры для облака */
 @keyframes cloudAppear {
 	0% {
 		opacity: 0;
 		transform: scale(0);
 	}
 	50% {
 		opacity: 1;
 		transform: scale(1);
 	}
 	100% {
 		opacity: 1;
 		transform: scale(0.9);
 	}
 }

 /* Ключевые кадры для появления */
 @keyframes fadeIn {
 	from {
 		opacity: 0;
 	}
 	to {
 		opacity: 1;
 	}
 }

 /* Ключевые кадры для биения сердца */
 @keyframes heartbeat {
 	0% {
 		transform: scale(.9);
 		stroke-width: 2px;
 	}
 	15% {
 		transform: scale(.9);
 		stroke-width: 0px;
 	}
 	30% {
 		transform: scale(.9);
 		stroke-width: 2px;
 	}
 	45% {
 		transform: scale(.9);
 		stroke-width: 0px;
 	}
 	60% {
 		transform: scale(.9);
 		stroke-width: 2px;
 	}
 	100% {
 		transform: scale(.9);
 		stroke-width: 2px;
 	}
 }

header .top_menu .right_menu {
	justify-content: end;
}

header .top_menu .lang_block {
	display: flex;
	gap: 2px;
	color: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 25px;
    transition: var(--transition-custom);
}
header .top_menu .lang_block .itm {
	border-radius: 100%;
	aspect-ratio: 48/46;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	color: var(--white);
	text-decoration: none;
	padding: 11.22px 11.71px;
	display: inline-flex;
	align-items: center;
}
header .top_menu .lang_block .itm.active {
	border-radius: 100%;
	background: var(--white);
	outline: 2px solid var(--yellow);
	color: var(--grey);
}
@media (hover: hover) {
    header .top_menu .lang_block .itm:hover {
        text-shadow: 0 0 15px var(--white);
    }
}


/* Стили для мобильных устройств */
@media (max-width: 767px) {
	header {
		padding-top: 14.95px;
	}
	header .container {
		padding: 0;
		width: calc(100% - 32px);
	}
	header .top_menu .left_menu, header .top_menu .right_menu {
		gap: 6.31px;
	}
	header .top_menu .lang_block .itm {
		font-size: 8.7px;
		padding: 5.22px 5.71px;
	}
}
/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1300px) {
	header .container {
		width: calc(100% - 50px);
		max-width: unset;
	}
	header .top_menu .logo img,
	header .top_menu .logo svg {
		max-width: clamp(60px, 12vw, 155px);
	}
	
}

@keyframes jump {
	0% {
		transform: translate(0%, -10%);
	}
	25% {
		transform: translate(0%, -5%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, -5%);
	}
	100% {
		transform: translate(0%, -10%);
	}
}
@keyframes jump_2 {
	0% {
		transform: translate(0%, -7%);
	}
	25% {
		transform: translate(0%, -3%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, -3%);
	}
	100% {
		transform: translate(0%, -7%);
	}
}
@keyframes jump_3 {
	0% {
		transform: translate(0%, -8%);
	}
	25% {
		transform: translate(0%, -2.5%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, -2.5%);
	}
	100% {
		transform: translate(0%, -8%);
	}
}
@keyframes jump_4 {
	0% {
		transform: translate(0%, -6%);
	}
	25% {
		transform: translate(0%, -2%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, -2%);
	}
	100% {
		transform: translate(0%, -6%);
	}
}






/* Первый блок */
.first_block .left_block .left_banner .anim_1 {
	-webkit-animation: jump 3.5s infinite linear;
	animation: jump 3.5s infinite linear;
}
.first_block .left_block .left_banner .anim_2 {
	-webkit-animation: jump_2 4.5s infinite linear;
	animation: jump_2 4.5s infinite linear;

}

.first_block .left_block .left_banner .anim_3 {
	-webkit-animation: jump_3 4.5s infinite linear;
	animation: jump_3 4.5s infinite linear;

}
.first_block .left_block .left_banner .anim_4 {
	-webkit-animation: jump_4 5.5s infinite linear;
	animation: jump_4 5.5s infinite linear;
}

.first_block {
	background: var(--green);
	min-height: clamp(379px, 31vw, 566px);
	position: relative;
}
.first_block:before {
	content: '';
	z-index: 1;
	position: absolute;
	top: -72px;
	aspect-ratio: 1382 / 625;
	width: 100%;
	max-width: 1382px;
	height: calc(100% + 72px);
	margin: auto;
	left: 0;
	right: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='1382' height='554' viewBox='0 0 1382 554' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='691' cy='241.5' rx='691' ry='312.5' fill='url(%23paint0_radial_201_14449)' /%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_201_14449' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(691 241.5) rotate(90) scale(312.5 691)'%3E%3Cstop stop-color='%23CED600' /%3E%3Cstop offset='1' stop-color='%23CED600' stop-opacity='0' /%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
}
.first_block .container {
	max-width: 1440px;
	display: flex;
	position: relative;
	z-index: 2;
}

.first_block .left_block,
.first_block .right_block {
	flex: 1;
	display: flex;
	position: relative;
}
.first_block .left_block .left_banner {
	transform: translateY(clamp(0px, 6vw, 86.4px));
	z-index: 2;
	position: relative;
}
.first_block .left_block .left_banner .particles_top {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.first_block .left_block .right_banner .static_img {
	position: relative;
	z-index: 1;
}
.first_block .left_block .left_banner .particles_bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}
.first_block .left_block .left_banner_shadow {
	width: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
} 


@keyframes jump_5 {
	0% {
		transform: translate(0%, 6%);
	}
	25% {
		transform: translate(0%, 2.5%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, 2.5%);
	}
	100% {
		transform: translate(0%, 6%);
	}
}
@keyframes jump_6 {
	0% {
		transform: translate(0%, -6%);
	}
	25% {
		transform: translate(0%, -2%);
	}
	50% {
		transform: translate(0%, 0%);
	}
	75% {
		transform: translate(0%, -2%);
	}
	100% {
		transform: translate(0%, -6%);
	}
}


.first_block .right_block .right_banner {
	transform: translateY(clamp(0px, 4.85vw, 80.4px));
	z-index: 2;
}
.first_block .right_block .right_banner .anim_1 {
	-webkit-animation: jump_5 4s infinite linear;
	animation: jump_5 4s infinite linear;
}
.first_block .right_block .right_banner .anim_2 {
	-webkit-animation: jump_6 4s infinite linear;
	animation: jump_6 4s infinite linear;
}
.first_block .right_block .right_banner .anim_3 {
	-webkit-animation: jump_4 4s infinite linear;
	animation: jump_4 4s infinite linear;
}
.first_block .right_block .right_banner .particles_top {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.first_block .right_block .right_banner .static_img {
	position: relative;
	z-index: 1;
}
.first_block .right_block .right_banner .particles_bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.first_block .right_block .right_banner_shadow {
	width: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
} 


.first_block .middle_block {
	width: 16%;
	display: flex;
	position: relative;
}
.first_block .middle_block img {
	margin-bottom: auto;
	margin-top: clamp(0px, 11.7vw, 168.48px);
	position: absolute;
	width: 188%;
	margin-left: -48%;
}
@media (min-width: 768px) and (max-width: 1300px) { /* Очень странный планшет, но вот так решил дизигнер, так и живем */
	.first_block .container {
		width: 100%;
		padding: 0;
	}
	.first_block .middle_block {
		width: 6%;
	}
	.first_block:after {
		background-position: top center;
	}
	.first_block .middle_block img {
		width: 606%;
		margin-left: -253%;
		margin-top: clamp(0px, 12.5vw, 159px);
	}
}
@media (min-width: 1024px) and (max-width: 1300px){
	.first_block:before {
		top: -11vh;
	}
}
@media (max-width: 767px) {
	.first_block:before {
		z-index: unset;
		background-image: url("data:image/svg+xml,%3Csvg width='410' height='270' viewBox='0 0 410 270' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='205' cy='135' rx='205' ry='135' fill='url(%23paint0_radial_243_16404)' /%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_243_16404' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(205 135) rotate(90) scale(135 205)'%3E%3Cstop stop-color='%23CED600' /%3E%3Cstop offset='1' stop-color='%23CED600' stop-opacity='0' /%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
		width: 410px;
		height: 270px;
		aspect-ratio: unset;
		top: 20px;
		max-width: 100%;
	}
	.first_block .container {
		padding: 0;
		position: unset;
	}
	.first_block .middle_block {
		position: unset;
		width: 0;
	}
	.first_block .middle_block img {
		width: clamp(229.75px, 50vw, 600px);
		margin: auto;
		left: 0;
		right: 0;
		top: clamp(72px, 20%, 200px);
	}
	.first_block .left_block,
	.first_block .right_block {
		width: 50%;
	}
	.first_block .left_block .left_banner {
		left: 0;
		transform: translateY(clamp(20px, 11vw, 86.4px));
		scale: 1.064;
	}
	.first_block .right_block .right_banner {
		right: 0;
		transform: translateY(clamp(20px, 11vw, 86.4px));
	}
	.first_block .left_block, .first_block .right_block {
		position: unset;
	}
	.first_block .left_block .left_banner_shadow,
	.first_block .right_block .right_banner_shadow {
		width: clamp(0px, 100%, 412px);
		left: 0;
		right: 0;
		top: unset;
		bottom: 0;
		margin: auto;
	}

}
@media (min-width: 416px) and (max-width: 767px) {
	.first_block .left_block .left_banner,
	.first_block .right_block .right_banner {
		transform: translateY(clamp(20px, 2vw, 86.4px));
	}
}

/* Второй блок */
.second_block {
	padding-bottom: 25px;
}
.second_block .container {
	display: flex;
	align-items: center;
}
.second_block .left_block,
.second_block .right_block {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	gap: 56px;
}
.second_block .middle_block {
	width: 44%;
}
.second_block .left_block .items_block ,
.second_block .right_block .items_block {
	display: inline-flex;
	flex-direction: column;
	gap: 56px;
}
.second_block .left_block .itm,
.second_block .right_block .itm {
	display: flex;
	align-items: center;
}

.second_block .left_block .itm p,
.second_block .right_block .itm p{
	font-size: 20px;
	line-height: 120%;
	color: var(--grey);
	white-space: nowrap;
}

.second_block .itm.leafs .icon {
	margin-right: 21px;
	min-width: 62px;
	width: 62px;
	height: 57px;
}
.second_block .itm.steam {
	padding-left: 48px;
}
.second_block .itm.steam .icon {
	margin-right: 29px;
	min-width: 31px;
	width: 31px;
	height: 62px;
}
.second_block .itm.scales .icon {
	margin-right: 24px;
	min-width: 53px;
	width: 53px;
	height: 56px;
}
.second_block .itm.heart {
	padding-left: 94px;
}
.second_block .itm.heart .icon {
	margin-right: 19px;
	min-width: 58px;
	width: 58px;
	height: 52px;
}
.second_block .itm.boxes {
	padding-left: 52px;
}
.second_block .itm.boxes .icon {
	margin-right: 21px;
	min-width: 63px;
	width: 63px;
	height: 63px;
}
@media (min-width: 768px) and (max-width: 1300px) { /* Очень странный планшет, но вот так решил дизигнер, так и живем */
	.second_block {
		padding-top: 10px;
		padding-bottom: 30px;
		overflow: hidden;
	}
	.second_block .container {
		width: calc(100% - 58.32px);
		max-width: unset;
	}
	.second_block .itm.leafs .icon {
		margin-right: 20.74px;
		min-width: 58.4px;
		width: 58.4px;
		height: 53.7px;
	}
	.second_block .itm.steam {
		padding-left: 48px;
	}
	.second_block .itm.steam .icon {
		margin-right: 27.34px;
		min-width: 29.52px;
		width: 29.52px;
		height: 58.44px;
	}
	.second_block .itm.scales .icon {
		margin-right: 24px;
		min-width: 53px;
		width: 53px;
		height: 56px;
	}
	.second_block .itm.heart {
		padding-left: 94px;
	}
	.second_block .itm.heart .icon {
		margin-right: 19px;
		min-width: 58px;
		width: 58px;
		height: 52px;
	}
	.second_block .itm.boxes {
		padding-left: 52px;
	}
	.second_block .itm.boxes .icon {
		margin-right: 21px;
		min-width: 63px;
		width: 63px;
		height: 63px;
	}
	.second_block .middle_block {
		position: relative;
		z-index: 1;
	}
	.second_block .middle_block img {
		scale: 1.066;
	}
}
@media (max-width: 767px) {
	.second_block .container {
		flex-wrap: wrap;
		max-width: calc(100% - 60px);
		justify-content: space-between;
		gap: 26px 0;
	}
	.second_block .middle_block {
		text-align: center;
		order: 1;
		width: 100%;
	}
	.second_block .middle_block img {
		width: clamp(315px, 70vw, 500px);
	}
	.second_block .left_block, .second_block .right_block, .second_block .left_block .items_block, .second_block .right_block .items_block{
		display: contents;
	}
	.second_block .left_block .itm p, .second_block .right_block .itm p {
		font-size: clamp(8px, 2vw, 14px);
	}
	.second_block .itm {
		padding: 0!important;
		width: 49%!important;
	}
	.second_block .itm.leafs {
		order: 2;
	}
	.second_block .itm.leafs .icon {
		margin-right: 9.18px;
		min-width: 27.66px;
		width: 27.66px;
		height: 25.43px;
	}
	.second_block .itm.steam {
		order: 3;
		transform: translateY(25px);
	}
	.second_block .itm.steam .icon {
		margin-right: 14.51px;
		min-width: 13.83px;
		width: 13.83px;
		height: 27.66px;
	}
	.second_block .itm.scales {
		order: 4;
	}
	.second_block .itm.scales .icon {
		margin-right: 11.3px;
		min-width: 23.64px;
		width: 23.64px;
		height: 24.98px;
	}
	.second_block .itm.heart {
		order: 6;
		transform: translateY(27px);
	}
	.second_block .itm.heart .icon {
		margin-right: 8.12px;
		min-width: 25.88px;
		width: 25.88px;
		height: 23.2px;
	}
	.second_block .itm.boxes {
		order: 7;
	}
	.second_block .itm.boxes .icon {
		margin-right: 8.73px;
		min-width: 28.11px;
		width: 28.11px;
		height: 28.11px;
	}

}

/* Ассортимент */
.recipes {
	margin-top: 14px;
	background: var(--green);
}

.recipes .container {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 108px;
}
.recipes .top_particles {
	left: -132px;
	top: -60px;
	position: absolute;
	width: clamp(126px, 30.07vw, 433px);
	pointer-events: none;
}
.recipes .bottom_particles {
	right: 183px;
	bottom: -70px;
	position: absolute;
	width: clamp(140px, 18.7vw, 269.52px);
	pointer-events: none;
}
.recipes .title_block {
	margin: auto;
	margin-top: 51px;
	margin-bottom: 53px;
	font-weight: 700;
	font-size: 30px;
	color: var(--white);
	border: 2px solid var(--yellow);
	border-radius: 25px;
	min-width: var(--swiper-slide-width);
	text-align: center;
	padding: 13px 20px;
	box-sizing: border-box;

}
.recipes .slider_block {
	position: relative;
}
.recipes .swiper-slide {
	overflow: hidden;
}
.recipes .swiper-slide .link_slide{
	text-decoration: none;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
}
.recipes .swiper-slide .img_block {
	overflow: hidden;
	display: inline-flex;
	border-radius: 32px;
}
.recipes .swiper-slide img {
	width: 100%;
	transition: var(--transition-custom);
}
@media (min-width: 1025px) {
	.recipes .swiper-slide:hover img {
		transform: scale(1.12);
	}
}
.recipes .swiper-slide .name {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	margin-top: 28px;
	font-weight: 700;
	font-size: 19px;
	line-height: 100%;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 66px;
	border-radius: 31.25px;
	padding: 0 10px;
	color: var(--grey);
}

.recipes .swiper-button button {
	cursor: pointer;
    transition: var(--transition-custom);
    border: none;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-right: 20px;
    position: absolute;
    top: calc((var(--swiper-slide-img-heigh) / 2) - 18.5px);
    margin: auto;
    z-index: 2;
    padding: 5px;
}
.recipes .swiper-button button .icon {
	min-width: 37px;
	width: 37px!important;
	height: 63px!important;
	transition: filter 0.3s ease;
}
@media (hover:hover) {
	.recipes .swiper-button button .icon {
		transition: all 0.3s ease;
	}

	.recipes .swiper-button button:hover .icon {
		filter: url(#glow_filter);
		transform: scale(1.01); 
	}
}
.recipes .swiper-button button.swiper_button_prev{
	left: calc(-37px * 2);
}
.recipes .swiper-button button.swiper_button_next{
	right: calc(-37px * 2);
}
.recipes .swiper-scrollbar {
	position: relative;
	margin-top: 53px;
}
.recipes .swiper-scrollbar {
	border-radius: 5px;
	height: 10px;
	background: transparent;
	box-shadow: inset 0 0 0 2px var(--yellow);
}
.recipes .swiper-scrollbar .swiper-scrollbar-drag {
	background: var(--yellow);
	border-radius: 5px;
}

@media (min-width: 1025px) and (max-width: 1300px) { /* Очень странный планшет, но вот так решил дизигнер, так и живем */
	.recipes .swiper-button button .icon {
		min-width: 33px;
		width: 33px!important;
		height: 57px!important;
	}
	.recipes .swiper-button button.swiper_button_prev{
		left: calc(-33px * 2);
	}
	.recipes .swiper-button button.swiper_button_next{
		right: calc(-33px * 2);
	}
	.recipes .swiper-slide .name {
		font-size: 17px;
	}
	.first_block .left_block .left_banner_shadow,
	.first_block .right_block .right_banner_shadow {
		top: unset;
		bottom: 0;
	}
}
@media (min-width: 768px) and (max-width: 1218px) {
	.recipes .container {
		width: calc(100% - 10vw);
		max-width: unset;
	}
	.recipes .swiper-button button.swiper_button_prev {
		left: -3.5vw;
	}
	.recipes .swiper-button button.swiper_button_next {
		right: -3.5vw;
	}
	.recipes .swiper-button button .icon {
		min-width: unset;
		width: 2vw!important;
	}
	.first_block .left_block .left_banner_shadow,
	.first_block .right_block .right_banner_shadow {
		top: unset;
		bottom: 0;
	}
	.second_block .left_block .items_block, .second_block .right_block .items_block {
		gap: 2.2vw;
	}
	.second_block .left_block .itm p, .second_block .right_block .itm p {
		font-size: 1.4vw;
	}
	.recipes .top_particles {
		left: -7vw;
		top: -3vw;
	}
	.recipes .bottom_particles {
		bottom: -2vw;
	}
} 

@media (max-width: 767px) {
	.recipes .container {
		width: calc(100% - 150px);
		padding-bottom: 54px;
		max-width: 400px;
	}
	.recipes .top_particles {
		width: clamp(126px, 30.07vw, 153px);
		left: -52px;
		top: -25px;
	}
	.recipes .bottom_particles {
		right: -22px;
		bottom: -36px;
	}
	.recipes .swiper-slide {
		 height: auto !important;
	}
	.recipes .swiper-scrollbar {
		display: none;
	}
	.recipes .title_block {
		border-radius: 15px;
		font-size: 13px;
		margin-top: 25px;
		margin-bottom: 47px;
		min-width: 120px;
		padding: 3px 21px;
		border: 1px solid var(--yellow);
	}
	.recipes .swiper-slide .img_block {
		width: 100%;
	}
	.recipes .swiper-slide .name {
		font-size: 13px;
		height: 46px;
		margin-top: 19.93px;
	}
	.recipes .swiper-button button {
		left: 0!important;
		right: 0!important;
		margin: auto;
		transform: rotate(90deg);
		width: 17px!important;
	}
	.recipes .swiper-button button.swiper_button_prev {
		top: calc(-22px - 14px);
	}
	.recipes .swiper-button button.swiper_button_next {
		top: unset;
		bottom:  calc(-22px - 14px);
	}
	.recipes .swiper-button button .icon {
		min-width: 17px!important;
		width: 17px!important;
		height: 28px!important;
	}
}



footer {
	color: var(--grey);
	padding-top: 31px;
	padding-bottom: 38px;
	position: relative;
	font-weight: 400;
	font-size: 18px;
}
footer .top-footer {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .copywriting {
	text-align: center;
}
footer .copywriting .c {
	display: inline-flex;
	align-items: center;
	width: 20px;
	height: 16px;
	position: relative;
}
footer .copywriting .c:before {
	content: '©';
	font-size: 40px;
	line-height: 0px;
	position: absolute;
	top: 17px;
}
footer .personal {
	color: var(--grey);
	text-align: center;
	text-decoration: underline;
}
@media (hover:hover) {
	footer .personal:hover {
		text-decoration: none;
	}
}
@media (max-width: 767px) {
	footer {
		font-size: 13px;
		padding-top: 23px;
		padding-bottom: 32px;
	}
	footer .container {
		width: 100%;
		padding: 0;
	}
	footer .top-footer {
		flex-direction: column;
		gap: 14px;
	}
	footer .btn_outline_green {
		order: 1;
	}
	footer .personal {
		order: 2;
	}
	footer .copywriting {
		order: 3;
	}
	footer .copywriting .c {
		width: 15px;
	}
	footer .copywriting .c:before {
		font-size: 28px;
	}
}


.recipes_modal .modal-body {
	padding: 0;
}
.recipes_page {
	display: flex;

}
.recipes_page .img_block {
	width: 49.44vw;
	/*width: clamp(300px, 49.44vw, 711.89px);*/
	height: 100dvh;
	position: sticky;
	top: 0;
	overflow: hidden;
}
.recipes_page .img_block img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	object-position: center;
}
.recipes_page .text_block .title_block {
	margin-top: 102.97px;
    font-size: 24.98px;
    display: inline-flex;
    align-items: center;
    min-height: 78.95px;
    padding: 20px 47px 20px 47px;
    box-sizing: border-box;
    background: var(--green);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    color: var(--white);
    min-width: clamp(100px, 41vw, 576px);
}
.recipes_page .text_block .text_container {
	padding-top: 69px;
	padding-left: 38px;
	max-width: 603px;
	box-sizing: border-box;
}
.recipes_page .text_block .text_container * {
	font-size: clamp(12px,1.37vw,19px);
	color: var(--grey);
}
.recipes_page .text_block .text_container p {
    margin-bottom: clamp(4px, 0.49vw, 7px);
}

.recipes_page .text_block .text_container ul {
    padding-left: clamp(15px, 1.74vw, 25px);
}

.recipes_page .text_block .text_container ul li {
    margin-bottom: clamp(4px, 0.42vw, 6px);
}
.close-modal {
	z-index: 5;
	position: absolute;
	right: 52px;
	top: 49px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: unset;
	background: transparent;
	border: none;
}
.close-modal:before, .close-modal:after {
	top: 0;
	position: absolute;
	left: 15px;
	content: ' ';
	height: 32.53px;
	width: 2px;
	background-color: var(--green);
	transition: var(--transition-custom);
}

@media (hover:hover) {
	.close-modal:hover:before,
	.close-modal:hover:after {
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
	}
}
.close-modal:before {
	transform: rotate(45deg);
}
.close-modal:after {
	transform: rotate(-45deg);
}
@media (min-width: 821px) and (max-width: 1300px) {

	.recipes_page .text_block .title_block {
		margin-top: 41.53px;
	}

	.recipes_page .text_block .text_container {
		padding-top: 33.85px;
		padding-left: 61.43px;
		max-width: 536px;
		box-sizing: border-box;
	}
	.close-modal {
		top: 43.56px;
		right: 46.22px;
	}
}
@media (min-width: 821px) and (max-width: 1147px) {
	.close-modal {
		scale: .8;
		top: 10px;
		right: 10px;
	}
}
@media (max-width: 820px) {
	.recipes_page {
		flex-direction: column;
	}
	.recipes_page .img_block {
		position: unset;
		margin-top: 46px;
		width: 100%;
		height: clamp(253px, 27vh, 500px);
	}
	.recipes_page .text_block {
		display: flex;
		flex-direction: column;
	}
	.recipes_page .text_block .title_block {
		width: calc(100% - 74px);
		margin: auto;
		margin-top: 23px;
		border-radius: 35px;
		font-size: 16px;
		min-height: 41px;
		padding: 0;
		 justify-content: center;
	}
	.recipes_page .text_block .text_container {
		padding: 0;
		padding-top: 29px;
		width: calc(100% - 74px);
		margin: auto;
	}
	.close-modal {
		top: 18px;
		right: 17px;
		width: 16px;
		height: 16px;
	}
	.close-modal:before, .close-modal:after {
		height: 21.21px;
		left: 7px;
	}
}





.glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
	box-shadow: none;
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev, .glightbox-modern .gclose, .glightbox-modern .gnext, .glightbox-modern .gprev {
	background-color: unset;
}