@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

:root {
	--container-width: 1246px;
	--container-padding: 15px;

	--font-main:Montserrat, sans-serif;
	--font-accent: Montserrat, sans-serif;
	--font-titles: var(--font-accent);

	--page-bg: #fff;
	--text-color: #000;
	--accent: #535353;
	--link-color: #A21223;
	--header-text:#D4D4D4;


}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: rgba(247, 247, 247, 1);
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}
/* Nav Icon */
.mobile-nav-btn {
	--time: 0.1s;

	--width: 40px;
	--height: 30px;

	--line-height: 4px;
	--spacing: 6px;

	--color: #000;
	--radius: 4px;

	/* Fixed height and width */
	/* height: var(--height); */
	/* width: var(--width); */

	/* Dynamic height and width */
	height: calc(var(--line-height) * 3 + var(--spacing) * 2);
	width: var(--width);

	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-icon {
	position: relative;
	width: var(--width);
	height: var(--line-height);
	background-color: var(--page-bg);
	border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
	content: '';
	display: block;

	position: absolute;
	left: 0;

	width: var(--width);
	height: var(--line-height);

	border-radius: var(--radius);
	background-color: var(--page-bg);
	transition: transform var(--time) ease-in,
		top var(--time) linear var(--time);
}

.nav-icon::before {
	/* top: calc(var(--line-height) * -2); */
	top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
	/* top: calc(var(--line-height) * 2); */
	top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
	background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
	top: 0;
	transition: top var(--time) linear,
		transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
	transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
	transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
	z-index: 999;
	display: none;
}

.mobile-nav {
  position: fixed;
  // top: 0;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 10px 40px 40px;
  background: var(--link-color);
  transition: all 0.4s ease-in;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: var(--page-bg);
  transition: 0.4s linear;
  width: 100%;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active {
  color: var(--text-color);
}

.menu__close {
  display: none;
}

.mobile-nav .mobile__btn {
  display: none;
}

.pagination .swiper-pagination-bullet {
  width: 19px;
  height: 2px;
  background-color: var(--text-color);
  opacity: 0.5;
  border-radius: 0;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
  width: 35px;
  height: 2px;
  transform: scale(1.2);
}

.slider-arrow {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--page-bg);
  border: 1px solid transparent;
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  transition: 0.4s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--link-color);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.services__card .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  left: 52% !important;
  transform: translateX(-50%);
  z-index: 10;
}

.services__card .swiper-pagination {
  bottom: -50px !important;
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding: 40px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 26px;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.modal-form__top-inner {
  display: flex;
  gap: 15px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal-label .modal__input {
  color: #151515;
  border: 1px solid var(--link-color);
  
  padding: 13px 14px;
  width: 100%;
}

.modal__inner textarea {
  color: #151515;
  border: 1px solid var(--link-color);
  
  padding: 13px 14px;
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__inner textarea::placeholder {
  color: #151515;
}

.modal-label input:focus,
.modal-label input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal__inner textarea:focus,
.modal__inner textarea:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 99px;
  width: 100%;
}

.title-1 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.title-2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 600;
  font-family: var(--font-main);
}

.title-3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.title-4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  font-family: var(--font-main);
}

.img__title {
  font-size: 65px;
  line-height: 53px;
  font-weight: 500;
  font-family: var(--font-main);
}

.text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.promo__text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--header-text);
}

.promo__text-2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.product__price {
  font-size: 30px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--font-main);
}

.advantage__title {
  font-size: 25px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--font-main);
}
.advantage__text {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  font-family: var(--font-main);
}

.recipes__text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
}

.form__text {
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.footer__text-2 {
  font-size: 20px;
  line-height: 53px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--page-bg);
}
.footer__text {
  font-size: 25px;
  line-height: 53px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  border-radius: 65px;
  font-family: var(--font-main);
  padding: 14px 5px;
  color: var(--link-color);
  background-color: var(--page-bg);
  transition: 0.4s linear;
  border: 1px solid var(--link-color)
}

.btn:hover,
.btn:focus,
.btn:active {
  color: var(--page-bg);
  background-color: var(--link-color);
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  border-radius: 65px;
  font-family: var(--font-main);
  padding: 14px 5px;
  color: var(--page-bg);
  background-color: var(--link-color);
  border: 1px solid transparent;
  transition: 0.4s linear;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
  color: var(--link-color);
  background-color: var(--page-bg);
  border: 1px solid var(--link-color);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--page-bg);
}

.header__btn {
  max-width: 200px;
  width: 100%;
}

.footer__btn {
  font-size: 17px;
  width: 100%;
}

.promo-btn {
  width: 100%;
}

.product__btn {
  width: 100%;
}

.about-info__btn {
  max-width: 300px;
  width: 100%;
}

.modal-form__btn {
  max-width: 252px;
  width: 100%;
}


.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  background-color: transparent;
  padding: 10px 0;
  z-index: 98;
  transform: translateY(10px);
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header--active {
  box-shadow: 0 0 10px 0 rgba(162, 18, 35, 0.8);
  background-color: rgba(162, 18, 35, 0.8);
  transform: translateY(0);
}

.header__row {
  display: flex;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.nav__list a {
  font-size: 15px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-titles);
  color: var(--header-text);
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
}

.header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  max-width: 345px;
  width: 100%;
  margin-left: 25px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 57px;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 40px;
  padding: 10px 0;
  transition: 0.4s linear;
}

.lang-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}

.lang-link {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--font-accent);
  color: var(--page-bg);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  transition: 0.4s linear;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  width: 100%;
  cursor: pointer;
  background-color: var(--page-bg);
  border-radius: 5px;
  padding: 10px 5px;
  gap: 6px;
  border: 1px solid var(--link-color);
}

.sub-menu a {
  color: var(--link-color);
  transition: 0.4s linear;
}

.lang:focus .sub-menu,
.lang:hover .sub-menu,
.lang:active .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.sub-menu a:focus,
.sub-menu a:hover,
.sub-menu a:active {
  color: var(--text-color);
}

.lang-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--page-bg);
}

.lang-link svg path {
  stroke: #fff;
}

.social__header {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  background-color: var(--link-color);
  padding: 62px 0 78px 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--page-bg);
}
.footer__left {
  max-width: 725px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer__contact {
  max-width: 655px;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list-item {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer__social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__btns {
  max-width: 270px;
  width: 100%;
}

.footer__copyright a {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: var(--page-bg);
  text-transform: uppercase;
}

.promo {
  height: 100vh;
}

.promo__wrapper {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner {
  height: 100vh;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__container {
  height: 100%;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 82px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  gap: 20px;
  max-width: 600px;
}

.promo__info-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

.promo__btns {
  max-width: 300px;
}

.promo__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.promo__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.animate-block{
	position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  z-index: 5;
}

.animate-text{
	width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  position: relative;
  margin-left: auto;
}

/* Общие стили анимации */
.animate-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  animation: 15s linear infinite rotate;
}

/* Для русского */
.lang-ru.animate-text::before {
  background-image: url("/storage/app/media/svg/promo-icon-text.svg");
}

/* Для английского */
.lang-en.animate-text::before {
  background-image: url("/storage/app/media/svg/promo-icon-text-en-1.svg");
}

/* Для казахского */
.lang-kz.animate-text::before {
  background-image: url("/storage/app/media/svg/promo-icon-text-kz-1.svg");
}

@keyframes rotate{
	0% {
    transform: rotate(0deg);
	}
	0% {
	    transform: rotate(360deg);
	}
}


.product {
  min-width: 320px;
  padding: 100px 0;
}

.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.product__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 50px;
}
.product__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background-color: var(--page-bg);
  padding: 63px 35px 41px 35px;
  border-radius: 15px;
  position: relative;
}
.product__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
}

.product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__block {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.product__block-inner {
  margin-top: auto;
  display: flex;
  /* flex-direction: column; */
  gap: 15px;
}

.product__text-hidden{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap:6px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: rgba(162, 18, 35, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	transition: 0.4s linear;
	z-index: 3;
}

.product__text-hidden.product__text-active{
	opacity: 1;
	visibility: visible;
}

.product-gram{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 5px;
	position: absolute;
	top: 27px;
	left: 35px;
	font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--link-color);
  background-color: rgba(247, 247, 247, 1);
  border-radius: 60px;
  width: 108px;
  z-index: 1;
}

.about-info {
  min-width: 320px;
  padding-bottom: 101px;
}

.about-info__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.about-info__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* max-width: 475px; */
  width: 100%;
}

.about-info__block-inner{
	display: flex;
	flex-direction: column;
  gap: 10px;
}

.about-info__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-info__list{
	display: flex;
	flex-direction: column;
  gap: 5px;
}

.about-info__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-info__item{
	display: flex;
  align-items: flex-start;
  gap: 5px;
}

.about-info__item img{
	flex-shrink: 0;
}

.about-info__img {
  max-width: 651px;
  width: 100%;
}

.about-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.home-about {
  min-width: 320px;
}
.img__block {
  padding: 94px 0 71px 0;
  position: relative;
  z-index: 1;
}

.img__block-2 {
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.img__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.img__block::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  //   background-color: rgba(0, 0, 0, 0.6);
}

.img__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.img__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 55%;
}

.img__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.img__right {
  max-width: 270px;
  width: 100%;
}
.img__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.img__item {
  display: flex;
  flex-direction: column;
  padding: 28px 77px 24px 41px;
  gap: 14px;
  border: 0.5px solid var(--page-bg);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.slide-1 {
  min-width: 320px;
  padding: 82px 0 92px 0;
}

.slide-2 {
  min-width: 320px;
  padding-bottom: 98px;
}

.slide-1__wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.slide-1__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.slide-1__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-1__card {
  position: relative;
}

.slide-1__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.4s linear;
  
  /* box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03); */
}

.slide-1__img {
  position: relative;
}

.slide-1__hidden{
	  opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(162, 18, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: 0.4s linear;
    z-index: 3;
}

.slide-1__block:focus .slide-1__hidden,
.slide-1__block:hover .slide-1__hidden,
.slide-1__block:active .slide-1__hidden{
	opacity: 1;
  visibility: visible;
}

.slide-1__img-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.slide-1-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
}
.slide-1__block-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-1__block-info .text-2 {
  color: var(--ser-tex);
}

.advantage {
  min-width: 320px;
  padding-bottom: 85px;
}

.advantage__wrapper {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.advantage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}
.advantage__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  background-color: var(--page-bg);
  padding: 36px 34px;
}
.advantage__icon {
  width: 68px;
  height: 68px;
}
.advantage__block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}


.form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  max-width: 914px;
  width: 100%;
  margin: 0 auto;
}
.form__top {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
}
.form__top-block {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-content: space-between;
}
.form-label {
  width: 100%;
}
.form-input {
  width: 100%;
  font-size: 17px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--page-bg);
  padding: 22px 5px 22px 31px;
  border-radius: 71px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid transparent;
  transition: 0.4s linear;
}

.form-input:focus,
.form-input:hover,
.form-input:active {
  border: 1px solid var(--page-bg);
}

.form-input::placeholder {
  color: var(--page-bg);
}

.form__contact-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 33px;
}
.form__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 732px;
  width: 100%;
}
.form__contact-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.form__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.form__social-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.form__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__contact-link img {
  width: 25px;
  height: 25px;
}

.recipes {
  min-width: 320px;
  padding: 85px 0 92px 0;
}

.recipes__wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.recipes__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.recipes__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 54px;
  max-width: 344px;
  width: 100%;
  flex-shrink: 0;
}

.recipes__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background-color: var(--link-color);
}

.recipes__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 31px;
}
.recipes__item {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.recipes__img {
  width: 100%;
  height: 100%;
}

.recipes__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}